-
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
Changes from 13 commits
2b2de4d
d013183
561480c
258a19e
b615e0f
c2610e2
04b7791
ea3321c
c7ddb91
2e15318
eb117db
86ca013
df11f81
8f04a30
d6eb9e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
|
Contributor
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. No material changes. Please revert this file. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,7 +46,7 @@ set +e | |
| # FIXME: TEMPORARILY disable MG PropertyGraph tests (experimental) tests and | ||
| # bulk sampler IO tests (hangs in CI) | ||
|
|
||
| if [[ "${RUNNER_ARCH}" != "ARM64" ]]; then | ||
| if [[ "${RUNNER_ARCH}" != "ARM64" && "${RAPIDS_PY_VERSION}" != "3.13" ]]; then | ||
|
Contributor
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. Can we skip these with a matrix filter instead? I think currently these spin up a job (for ARM) that immediately ends. Let’s avoid that. |
||
| rapids-logger "(cugraph-dgl) Generate Python testing dependencies" | ||
| rapids-dependency-file-generator \ | ||
| --output conda \ | ||
|
|
@@ -85,7 +85,7 @@ if [[ "${RUNNER_ARCH}" != "ARM64" ]]; then | |
| conda deactivate | ||
| set -u | ||
| else | ||
| rapids-logger "skipping cugraph_dgl pytest on ARM64" | ||
| rapids-logger "skipping cugraph_dgl pytest on ARM64 and Python 3.13" | ||
| fi | ||
|
|
||
| if [[ "${RUNNER_ARCH}" != "ARM64" ]]; then | ||
|
|
||
| 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" | ||
|
|
||
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.