Skip to content

Commit

Permalink
Don't test 3.11 and 3.12 for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ubmarco committed Jan 18, 2024
1 parent 258a470 commit 98e3862
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [[3, 8], [3, 9], [3, 10]]
python-version: [[3, 8], [3, 9], [3, 10], [3, 11], [3, 12]]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: windows-latest
python-version: [3, 11]
- os: windows-latest
python-version: [3, 12]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ classifiers = [
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ isolated_build = True
# python 3.11 and 3.12 test ok on Linux but fail on Windows due to Pillow
# Currently used Pillow 9.0.1 only supports Python 3.10 according to
# https://pillow.readthedocs.io/en/latest/installation.html#python-support
envlist = py{38,39,310}, docs, black
envlist = py{38,39,310,311,312}, docs, black

[testenv]
allowlist_externals = poetry
Expand Down

0 comments on commit 98e3862

Please sign in to comment.