Skip to content

Commit

Permalink
Merge branch 'master' into feature/template-override
Browse files Browse the repository at this point in the history
  • Loading branch information
woile authored Oct 1, 2023
2 parents f086c69 + f27b969 commit c36e406
Show file tree
Hide file tree
Showing 8 changed files with 200 additions and 182 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
python-check:
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
platform: [ ubuntu-20.04, macos-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ repos:
exclude: "poetry.lock"

- repo: https://github.com/commitizen-tools/commitizen
rev: v3.9.1 # automatically updated by Commitizen
rev: v3.10.0 # automatically updated by Commitizen
hooks:
- id: commitizen
- id: commitizen-branch
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@

## v3.10.0 (2023-09-25)

### Feat

- Drop support for Python 3.7 (#858)

## v3.9.1 (2023-09-22)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion commitizen/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.9.1"
__version__ = "3.10.0"
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ descriptive commits.

## Requirements

[Python](https://www.python.org/downloads/) `3.7+`
[Python](https://www.python.org/downloads/) `3.8+`

[Git][gitscm] `1.8.5.2+`

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/gitlab_ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ test:

auto-bump:
stage: auto-bump
image: python:3.7
image: python:3.8
before_script:
- "which ssh-agent || ( apt-get update -qy && apt-get install openssh-client -qqy )"
- eval `ssh-agent -s`
Expand Down
351 changes: 182 additions & 169 deletions poetry.lock

Large diffs are not rendered by default.

15 changes: 7 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.commitizen]
version = "3.9.1"
version = "3.10.0"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
Expand All @@ -9,7 +9,7 @@ version_files = [

[tool.poetry]
name = "commitizen"
version = "3.9.1"
version = "3.10.0"
description = "Python commitizen client tool"
authors = ["Santiago Fraire <[email protected]>"]
license = "MIT"
Expand All @@ -25,7 +25,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -34,8 +33,8 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.7"
questionary = "^1.4.0"
python = ">=3.8"
questionary = "^2.0"
decli = "^0.6.0"
colorama = "^0.4.1"
termcolor = ">= 1.1, < 3"
Expand All @@ -50,7 +49,7 @@ charset-normalizer = ">=2.1.0,<4"
importlib_metadata = { version = ">=4.13,<7"}

[tool.poetry.group.dev.dependencies]
ipython = "^7.34"
ipython = "^8.0"
# test
pytest = "^7.2.0"
pytest-cov = "^4.0"
Expand All @@ -59,10 +58,10 @@ pytest-regressions = "^2.4.0"
pytest-freezer = "^0.4.6"
pytest-xdist = "^3.1.0"
# code formatter
black = "^22.10"
black = ">=22.10,<24.0"
# linter
ruff = ">=0.0.275,<0.0.292"
pre-commit = "^2.18.0"
pre-commit = ">=2.18,<4.0"
mypy = "^1.4"
types-PyYAML = ">=5.4.3,<7.0.0"
types-termcolor = "^0.1.1"
Expand Down

0 comments on commit c36e406

Please sign in to comment.