Skip to content

Commit 4f707fe

Browse files
committed
Drop support for Python 3.6. Add Python 3.12 to CI
1 parent a302715 commit 4f707fe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
platform: [windows-latest, macos-latest, ubuntu-latest]
53-
python-version: ["3.7", "3.11"]
53+
python-version: ["3.7", "3.12"]
5454

5555
runs-on: ${{ matrix.platform }}
5656

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
strategy:
105105
fail-fast: false
106106
matrix:
107-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
107+
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
108108

109109
steps:
110110
- uses: actions/checkout@v4
@@ -169,7 +169,7 @@ jobs:
169169
strategy:
170170
fail-fast: false
171171
matrix:
172-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
172+
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
173173

174174
steps:
175175
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ write_to = "src/_version.py"
1818

1919
[tool.mypy]
2020
files = "setup.py"
21-
python_version = "3.6"
21+
python_version = "3.7"
2222
strict = true
2323
show_error_codes = true
2424
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]

0 commit comments

Comments
 (0)