Thanks to visit codestin.com
Credit goes to github.com

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
16 changes: 15 additions & 1 deletion .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,25 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-14, windows-2019]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
# torch-version: [1.13.0, 2.0.0, 2.1.0, 2.2.0, 2.3.0, 2.4.0, 2.5.0, 2.6.0]
torch-version: [2.6.0]
cuda-version: ['cpu', 'cu117', 'cu118', 'cu121', 'cu124', 'cu126']
exclude:
- torch-version: 1.13.0
python-version: '3.13'
- torch-version: 2.0.0
python-version: '3.13'
- torch-version: 2.1.0
python-version: '3.13'
- torch-version: 2.2.0
python-version: '3.13'
- torch-version: 2.3.0
python-version: '3.13'
- torch-version: 2.4.0
python-version: '3.13'
- torch-version: 2.5.0
python-version: '3.13'
- torch-version: 1.13.0
python-version: '3.12'
- torch-version: 2.0.0
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ jobs:

- name: Setup packages
uses: ./.github/actions/setup
with:
python-version: 3.9

- name: Install package
run: |
Expand Down
16 changes: 15 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,24 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-14, windows-2019]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
torch-version: [1.13.0, 2.0.0, 2.1.0, 2.2.0, 2.3.0, 2.4.0, 2.5.0, 2.6.0]
cuda-version: ['cpu', 'cu117', 'cu118', 'cu121', 'cu124', 'cu126']
exclude:
- torch-version: 1.13.0
python-version: '3.13'
- torch-version: 2.0.0
python-version: '3.13'
- torch-version: 2.1.0
python-version: '3.13'
- torch-version: 2.2.0
python-version: '3.13'
- torch-version: 2.3.0
python-version: '3.13'
- torch-version: 2.4.0
python-version: '3.13'
- torch-version: 2.5.0
python-version: '3.13'
- torch-version: 1.13.0
python-version: '3.12'
- torch-version: 2.0.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

## Installation

We provide pre-built Python wheels for all major OS/PyTorch/CUDA combinations from Python 3.9 till 3.12, see [here](https://data.pyg.org/whl).
We provide pre-built Python wheels for all major OS/PyTorch/CUDA combinations from Python 3.9 till 3.13, see [here](https://data.pyg.org/whl).
Note that currently, Windows wheels are not supported (we are working on fixing this as soon as possible).

To install the wheels, simply run
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]

Expand Down
Loading