Skip to content

Commit 7fd9c88

Browse files
authored
Support Python 3.12 (#11)
1 parent 8329082 commit 7fd9c88

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
python-version: ["3.11"]
9+
python-version: ["3.12"]
1010
os: [ubuntu-latest]
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
python-version: ["3.11"]
9+
python-version: ["3.12"]
1010
os: [ubuntu-latest]
1111
tool: ["black", "isort"]
1212
steps:

.github/workflows/packaging_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
python-version: ["3.11"]
9+
python-version: ["3.11", "3.12"]
1010
os: [ubuntu-latest]
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: [ "3.11" ]
17+
python-version: [ "3.12" ]
1818
os: [ ubuntu-latest ]
1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/pythonlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python-version: ["3.11"]
10+
python-version: ["3.12"]
1111
os: [ubuntu-latest]
1212
linter-env: ["linting", "type_check"]
1313
steps:

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
python-version: ["3.11"]
9+
python-version: ["3.11", "3.12"]
1010
os: [ubuntu-latest]
1111
steps:
1212
- uses: actions/checkout@v4

dev_requirements/requirements-linting.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
astroid==3.0.0
88
# via pylint
9-
dill==0.3.6
9+
dill==0.3.7
1010
# via pylint
1111
isort==5.12.0
1212
# via pylint

0 commit comments

Comments
 (0)