Skip to content

Commit 6bb2d12

Browse files
committed
chore: support Python 3.12
1 parent 5f32ff1 commit 6bb2d12

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/python-package-daily.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: [3.8, 3.9, '3.10', '3.11']
18+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -25,7 +25,7 @@ jobs:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install dependencies
2727
run: |
28-
python -m pip install --upgrade pip wheel
28+
python -m pip install --upgrade pip setuptools
2929
python -m pip install -e '.[testing]'
3030
- name: Test with pytest
3131
run: |

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: [3.8, 3.9, '3.10', '3.11']
19+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
2020

2121
steps:
2222
- uses: actions/checkout@v2
@@ -26,7 +26,7 @@ jobs:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies
2828
run: |
29-
python -m pip install --upgrade pip wheel
29+
python -m pip install --upgrade pip setuptools
3030
python -m pip install -r dev-requirements.txt
3131
- name: Test with pytest
3232
run: |

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ classifiers =
3535
Programming Language :: Python :: 3.9
3636
Programming Language :: Python :: 3.10
3737
Programming Language :: Python :: 3.11
38+
Programming Language :: Python :: 3.12
3839
License :: Other/Proprietary License
3940

4041

0 commit comments

Comments
 (0)