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
3 changes: 1 addition & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
run: |
# Set Linux matrix
filename=".github/workflows/utils/full_matrix_linux.json"
# TODO: Build for CUDA versions.
matrix=$(jq -c '[.[] | { "torch-version": .["torch-version"], "python-version": .["python-version"][], "cuda-version": "cpu" }]' $filename)
matrix=$(jq -c '[.[] | { "torch-version": .["torch-version"], "python-version": .["python-version"][], "cuda-version": .["cuda-version"][] }]' $filename)
echo "linux-matrix=$matrix" >> $GITHUB_OUTPUT
echo "linux-matrix=$matrix"

Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/nightly_legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
max-parallel: 10
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
# NOTE: ubuntu-22.04 is disabled in favor of nightly.yml.
os: [macos-14, windows-2022]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
# TODO: Uncomment this once we split the workflow to avoid GitHub Actions' 256 matrix configuration limit.
# 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, 2.7.0]
Expand Down Expand Up @@ -122,9 +123,6 @@ jobs:
- os: windows-2022
torch-version: 2.0.0
cuda-version: 'cu121'
# Disabled in favor of nightly.yml.
- os: ubuntu-22.04
cuda-version: 'cpu'

steps:
- name: Checkout repository
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [0.5.0] - 2023-MM-DD
### Added
- Added `manylinux_2_28` wheel support in nightly releases ([#480](https://github.com/pyg-team/pyg-lib/pull/480))
- Added support for `manylinux_2_28` wheels built with CUDA in nightly releases ([#496](https://github.com/pyg-team/pyg-lib/pull/496))
- Added support for `manylinux_2_28` wheels in nightly releases ([#480](https://github.com/pyg-team/pyg-lib/pull/480))
- Added CUDA 12.9 support ([#494](https://github.com/pyg-team/pyg-lib/pull/494))
- Added PyTorch 2.8 support ([#494](https://github.com/pyg-team/pyg-lib/pull/494))
- Added PyTorch 2.7 support ([#442](https://github.com/pyg-team/pyg-lib/pull/442))
Expand Down
Loading