Skip to content

Commit 040d514

Browse files
authored
Merge pull request #40 from twonote/update-test-python-version
Update Python version to test based on the EOL status.
2 parents 74b54d9 + 519bb30 commit 040d514

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix: # matrix testing strategy
18-
python-version: ['3.7', '3.8', '3.9', '3.10']
18+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1919
steps:
2020
- name: Check out repository code
2121
uses: actions/checkout@v2
@@ -24,6 +24,9 @@ jobs:
2424
uses: actions/setup-python@v2
2525
with:
2626
python-version: ${{ matrix.python-version }}
27+
# necessary after Python 3.12 / gh-95299
28+
- name: Install setuptools
29+
run: pip install setuptools
2730
- name: Install solid
2831
run: python setup.py install
2932
- name: Install pytest

0 commit comments

Comments
 (0)