Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
python-version: ["3.13"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: git fetch origin gh-pages --depth=1
- uses: actions/setup-python@v2
with:
python-version: '3.12'
python-version: '3.13'
- name: Install
run: |
pip install -e .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: '3.13'

- name: Check code style
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@v4
with:
python-version: 3.12
python-version: 3.13

- id: get_version
name: Get the release version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.12', '3.13' ]
python-version: [ '3.12', '3.13', '3.14' ]

steps:
- uses: actions/checkout@v3
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,15 @@ jobs:
matrix:
# In accordance with
# https://github.com/pytorch/pytorch/blob/main/RELEASE.md#release-compatibility-matrix
python-version: [ '3.12', '3.13' ]
torch-version: [ '2.6.0', '2.7.0', '2.8.0']
python-version: [ '3.12', '3.13', '3.14' ]
torch-version: [ '2.6.0', '2.7.0', '2.8.0', '2.9.0' ]
exclude:
- python-version: '3.14'
torch-version: '2.6.0'
- python-version: '3.14'
torch-version: '2.7.0'
- python-version: '3.14'
torch-version: '2.8.0'


steps:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: 3 :: Only',
]

Expand Down
Loading