Skip to content

Commit

Permalink
Drop support for python 3.8, 3.9; Add tests for python 3.12, 3.13 (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
JWCook authored Jan 2, 2025
2 parents f3322ad + 1c0b624 commit de3c82a
Show file tree
Hide file tree
Showing 5 changed files with 591 additions and 587 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [main]
workflow_dispatch:
env:
LATEST_PY_VERSION: '3.11'
LATEST_PY_VERSION: '3.13'


jobs:
Expand All @@ -17,8 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11'] #, '3.12', '3.13']
# Tests for 3.12+ failing with https://github.com/python-poetry/poetry/issues/7611
python-version: ['3.10', '3.11', '3.12', '3.13']
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
required: false
default: ''
env:
LATEST_PY_VERSION: '3.11'
LATEST_PY_VERSION: '3.13'

# Deploy stable builds on tags only, and pre-release builds from manual trigger ("workflow_dispatch")
jobs:
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
DEFAULT_COVERAGE_FORMATS = ['html', 'term']


@session(python=['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'])
@session(python=['3.10', '3.11', '3.12', '3.13'])
def test(session):
"""Run tests for a specific python version"""
test_paths = session.posargs or ['test']
Expand Down
Loading

0 comments on commit de3c82a

Please sign in to comment.