Skip to content

Commit

Permalink
ci: Add Python 3.13 to test matrix
Browse files Browse the repository at this point in the history
Remove Python 3.9 support
  • Loading branch information
ales-erjavec committed Jan 24, 2025
1 parent e576461 commit f80cc31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: False
matrix:
python: [3.9]
python: ['3.10']
os: [ubuntu-22.04]

steps:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,24 @@ jobs:
fail-fast: False
matrix:
os: [ubuntu-22.04]
python-version: [3.9, '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
tox_env: [orange-released]
name: [Released]
include:
- os: ubuntu-22.04
python-version: '3.12'
python-version: '3.13'
tox_env: orange-latest
name: Latest
- os: ubuntu-20.04
python-version: 3.9
python-version: '3.10'
tox_env: orange-oldest
name: Oldest dependencies
- os: ubuntu-22.04
python-version: '3.10'
python-version: '3.12'
tox_env: pyqt6
name: PyQt6
- os: ubuntu-22.04
python-version: '3.12'
python-version: '3.13'
tox_env: beta
name: "Scientific Python nightly wheels"

Expand Down Expand Up @@ -125,24 +125,24 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
python-version: [3.9, '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
tox_env: [orange-released]
name: [Released]
include:
- os: windows-latest
python-version: '3.12'
python-version: '3.13'
tox_env: orange-latest
name: Latest
- os: macos-latest
python-version: '3.12'
python-version: '3.13'
tox_env: orange-latest
name: Latest
- os: windows-latest
python-version: '3.10'
python-version: '3.12'
tox_env: pyqt6
name: PyQt6
- os: macos-latest
python-version: 3.9
python-version: '3.12'
tox_env: pyqt6
name: PyQt6

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
'Intended Audience :: Developers',
]

PYTHON_REQUIRES = ">=3.9"
PYTHON_REQUIRES = ">=3.10"


requirements = ['requirements-core.txt', 'requirements-gui.txt']
Expand Down

0 comments on commit f80cc31

Please sign in to comment.