Skip to content

Commit 0f10428

Browse files
committed
build(python): Sunset Python 3.6 and support Python 3.11
Fixes commitizen-tools#607 BREAKING CHANGE: Python 3.6 is not supported anymore
1 parent afddc0b commit 0f10428

File tree

5 files changed

+279
-370
lines changed

5 files changed

+279
-370
lines changed

.github/workflows/pythonpackage.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ jobs:
66
python-check:
77
strategy:
88
matrix:
9-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
9+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1010
platform: [ubuntu-20.04, macos-latest, windows-latest]
1111
runs-on: ${{ matrix.platform }}
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ the version or a changelog.
3838

3939
## Requirements
4040

41-
Python 3.6+
41+
Python 3.7+
4242

4343
[Git][gitscm] `1.8.5.2`+
4444

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.6
77+
image: python:3.7
7878
before_script:
7979
- "which ssh-agent || ( apt-get update -qy && apt-get install openssh-client -qqy )"
8080
- eval `ssh-agent -s`

0 commit comments

Comments
 (0)