-
Notifications
You must be signed in to change notification settings - Fork 140
feat: add support for Python 3.14 #933
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 all commits
6111e56
a248f27
9577406
166bb83
02c0524
8646ada
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -101,7 +101,7 @@ CUDA/GPU Runtime: | |
|
|
||
| Python: | ||
|
|
||
| * Python >=3.11.x, <= 3.13.x | ||
| * Python >=3.11.x, <= 3.14.x | ||
|
|
||
| OS: | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -57,7 +57,7 @@ This repo is also hosted as a [COIN-OR](http://github.com/coin-or/cuopt/) projec | |
|
|
||
| ### Python requirements | ||
|
|
||
| * Python >=3.11, <=3.13 | ||
| * Python >=3.11, <=3.14 | ||
|
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. @tmckayus @rgsl888prabhu can we replace stuff like this with links to the RAPIDS install selector? https://docs.rapids.ai/install/ Or is there a specific reason that these need to be hard-coded entries? This type of stuff is a bit of a pain to update when we change the support matrix for RAPIDS.
Collaborator
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. I think selector would be an awesome upgrade, we can work this. |
||
|
|
||
| ### OS requirements | ||
|
|
||
|
|
@@ -130,13 +130,13 @@ Users can pull the cuOpt container from the NVIDIA container registry. | |
|
|
||
| ```bash | ||
| # For CUDA 12.x | ||
| docker pull nvidia/cuopt:latest-cuda12.9-py3.13 | ||
| docker pull nvidia/cuopt:latest-cuda12.9-py3.14 | ||
|
|
||
| # For CUDA 13.x | ||
| docker pull nvidia/cuopt:latest-cuda13.0-py3.13 | ||
| docker pull nvidia/cuopt:latest-cuda13.0-py3.14 | ||
| ``` | ||
|
|
||
| Note: The ``latest`` tag is the latest stable release of cuOpt. If you want to use a specific version, you can use the ``<version>-cuda12.9-py3.13`` or ``<version>-cuda13.0-py3.13`` tag. For example, to use cuOpt 25.10.0, you can use the ``25.10.0-cuda12.9-py3.13`` or ``25.10.0-cuda13.0-py3.13`` tag. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt/tags>`_ for the list of available tags. | ||
| Note: The ``latest`` tag is the latest stable release of cuOpt. If you want to use a specific version, you can use the ``<version>-cuda12.9-py3.14`` or ``<version>-cuda13.0-py3.14`` tag. For example, to use cuOpt 25.10.0, you can use the ``25.10.0-cuda12.9-py3.13`` or ``25.10.0-cuda13.0-py3.13`` tag. Please refer to `cuOpt dockerhub page <https://hub.docker.com/r/nvidia/cuopt/tags>`_ for the list of available tags. | ||
|
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. 🧩 Analysis chain🏁 Script executed: # Check the README.md file around line 139 to see the exact content
head -n 145 README.md | tail -n 20Repository: NVIDIA/cuopt Length of output: 1875 🏁 Script executed: # Also check the context around line 133-136 to see the full picture of version changes
head -n 145 README.md | tail -n 30Repository: NVIDIA/cuopt Length of output: 1875 🏁 Script executed: # Check line 60 as well to understand the Python version support range
sed -n '55,65p' README.mdRepository: NVIDIA/cuopt Length of output: 1875 Fix link syntax and Python version inconsistency. Line 139 uses reStructuredText link syntax ( Additionally, the note introduces 🤖 Prompt for AI Agents
Contributor
Author
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. There is no 25.10 release with Python 3.14 support and there never will be 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.
The only remaining point from my comment would be the reStructuredText link syntax ( (ᴗ_ ᴗ。) ✏️ Learnings added
🧠 Learnings used |
||
|
|
||
| More information about the cuOpt container can be found [here](https://docs.nvidia.com/cuopt/user-guide/latest/cuopt-server/quick-start.html#container-from-docker-hub). | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 216
🏁 Script executed:
Repository: NVIDIA/cuopt
Length of output: 21773
Pin all shared-workflows refs to immutable commit SHAs.
This PR uses mutable branch references (
@python-3.14) for 15 reusable workflow invocations across the file. Branch refs make CI non-reproducible and leave this workflow brittle if the branch is force-pushed or deleted before a follow-up PR switches to a stable reference. Replace each@python-3.14ref with a commit SHA.Also applies to: 114, 282, 288, 295, 311, 318, 335, 348, 360, 371, 380, 396, 408, 420
🤖 Prompt for AI Agents
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.
No, we control this reference and it's only temporary anyway.
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.
@gforsyth, understood! Since you control the upstreamrapidsai/shared-workflowsrepository and the@python-3.14reference is intentionally temporary (to be reverted to@mainonce all RAPIDS repos add Python 3.14 support), the mutable branch ref is perfectly reasonable here. I'll take note of this for future reviews.✏️ Learnings added