Skip to content

Commit c36e406

Browse files
authored
Merge branch 'master' into feature/template-override
2 parents f086c69 + f27b969 commit c36e406

File tree

8 files changed

+200
-182
lines changed

8 files changed

+200
-182
lines changed

.github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
python-check:
77
strategy:
88
matrix:
9-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
9+
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
1010
platform: [ ubuntu-20.04, macos-latest, windows-latest ]
1111
runs-on: ${{ matrix.platform }}
1212
steps:

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ repos:
4646
exclude: "poetry.lock"
4747

4848
- repo: https://github.com/commitizen-tools/commitizen
49-
rev: v3.9.1 # automatically updated by Commitizen
49+
rev: v3.10.0 # automatically updated by Commitizen
5050
hooks:
5151
- id: commitizen
5252
- id: commitizen-branch

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11

2+
## v3.10.0 (2023-09-25)
3+
4+
### Feat
5+
6+
- Drop support for Python 3.7 (#858)
7+
28
## v3.9.1 (2023-09-22)
39

410
### Fix

commitizen/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.9.1"
1+
__version__ = "3.10.0"

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ descriptive commits.
4040

4141
## Requirements
4242

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

4545
[Git][gitscm] `1.8.5.2+`
4646

docs/tutorials/gitlab_ci.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ test:
7474

7575
auto-bump:
7676
stage: auto-bump
77-
image: python:3.7
77+
image: python:3.8
7878
before_script:
7979
- "which ssh-agent || ( apt-get update -qy && apt-get install openssh-client -qqy )"
8080
- eval `ssh-agent -s`

poetry.lock

+182-169
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.commitizen]
2-
version = "3.9.1"
2+
version = "3.10.0"
33
tag_format = "v$version"
44
version_files = [
55
"pyproject.toml:version",
@@ -9,7 +9,7 @@ version_files = [
99

1010
[tool.poetry]
1111
name = "commitizen"
12-
version = "3.9.1"
12+
version = "3.10.0"
1313
description = "Python commitizen client tool"
1414
authors = ["Santiago Fraire <santiwilly@gmail.com>"]
1515
license = "MIT"
@@ -25,7 +25,6 @@ classifiers = [
2525
"Operating System :: OS Independent",
2626
"Programming Language :: Python",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.7",
2928
"Programming Language :: Python :: 3.8",
3029
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
@@ -34,8 +33,8 @@ classifiers = [
3433
]
3534

3635
[tool.poetry.dependencies]
37-
python = "^3.7"
38-
questionary = "^1.4.0"
36+
python = ">=3.8"
37+
questionary = "^2.0"
3938
decli = "^0.6.0"
4039
colorama = "^0.4.1"
4140
termcolor = ">= 1.1, < 3"
@@ -50,7 +49,7 @@ charset-normalizer = ">=2.1.0,<4"
5049
importlib_metadata = { version = ">=4.13,<7"}
5150

5251
[tool.poetry.group.dev.dependencies]
53-
ipython = "^7.34"
52+
ipython = "^8.0"
5453
# test
5554
pytest = "^7.2.0"
5655
pytest-cov = "^4.0"
@@ -59,10 +58,10 @@ pytest-regressions = "^2.4.0"
5958
pytest-freezer = "^0.4.6"
6059
pytest-xdist = "^3.1.0"
6160
# code formatter
62-
black = "^22.10"
61+
black = ">=22.10,<24.0"
6362
# linter
6463
ruff = ">=0.0.275,<0.0.292"
65-
pre-commit = "^2.18.0"
64+
pre-commit = ">=2.18,<4.0"
6665
mypy = "^1.4"
6766
types-PyYAML = ">=5.4.3,<7.0.0"
6867
types-termcolor = "^0.1.1"

0 commit comments

Comments
 (0)