-
Notifications
You must be signed in to change notification settings - Fork 36
chore: skip DGL tests on Python 3.13 #201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
2b2de4d
chore: skip DGL tests on Python 3.13
gforsyth d013183
update copyright
alexbarghi-nv 561480c
Merge branch 'branch-25.06' into skip_dgl_313
alexbarghi-nv 258a19e
remove dgl requirements
alexbarghi-nv b615e0f
fix dependencies file
alexbarghi-nv c2610e2
ci: skip dgl tests on conda
gforsyth 04b7791
ci: adjust job matrix to not run DGL on Python 3.13
gforsyth ea3321c
Update ci/test_python.sh
gforsyth c7ddb91
what's a bool between friends?
gforsyth 2e15318
chore: remove py313 gating
gforsyth eb117db
Add `librmm` to host
gforsyth 86ca013
fix: exclude librmm.so from wheels builds
gforsyth df11f81
Merge branch 'branch-25.06' into skip_dgl_313
alexbarghi-nv 8f04a30
revert changes to dgl pytests
gforsyth d6eb9e9
skip py3.13 with matrix filter
gforsyth File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,9 +17,9 @@ CUGRAPH_DGL_WHEELHOUSE=$(RAPIDS_PY_WHEEL_NAME="${package_name}_${RAPIDS_PY_CUDA_ | |
| PKG_CUDA_VER="$(echo ${CUDA_VERSION} | cut -d '.' -f1,2 | tr -d '.')" | ||
| PKG_CUDA_VER_MAJOR=${PKG_CUDA_VER:0:2} | ||
| if [[ "${PKG_CUDA_VER_MAJOR}" == "12" ]]; then | ||
| PYTORCH_CUDA_VER="121" | ||
| PYTORCH_CUDA_VER="121" | ||
| else | ||
| PYTORCH_CUDA_VER=$PKG_CUDA_VER | ||
| PYTORCH_CUDA_VER=$PKG_CUDA_VER | ||
| fi | ||
|
Comment on lines
19
to
23
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It looks like this dedent change snuck in |
||
| PYTORCH_URL="https://download.pytorch.org/whl/cu${PYTORCH_CUDA_VER}" | ||
| DGL_URL="https://data.dgl.ai/wheels/torch-2.3/cu${PYTORCH_CUDA_VER}/repo.html" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would drop Python 3.10 and 3.11, which I don’t think we want? Just say “not 3.13” here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same in pr.yaml.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was already dropping Python 3.10 and 3.11 with the
max_by(.PY_VER)-- I'm just telling it to use 3.12 instead of the new max of 3.13There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahhhh I missed that this is a pure wheel. (See
pure-wheel: truebelow). That's fine, then.