You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contributes to rapidsai/build-planning#205
This PR adds support for Python 3.14.
## Notes for Reviewers
This is part of ongoing work to add Python 3.14 support across RAPIDS.
It temporarily introduces a build/test matrix including Python 3.14, from rapidsai/shared-workflows#508.
A follow-up PR will revert back to pointing at the `main` branch of `shared-workflows` once all
RAPIDS repos have added Python 3.14 support.
### This will fail until all dependencies have been updated to Python 3.14
CI here is expected to fail until all of this project's upstream dependencies support Python 3.14.
This can be merged whenever all CI jobs are passing.
Authors:
- Gil Forsyth (https://github.com/gforsyth)
Approvers:
- James Lamb (https://github.com/jameslamb)
- Ramakrishnap (https://github.com/rgsl888prabhu)
URL: #933
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
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
57
57
58
58
### Python requirements
59
59
60
-
* Python >=3.11, <=3.13
60
+
* Python >=3.11, <=3.14
61
61
62
62
### OS requirements
63
63
@@ -130,13 +130,13 @@ Users can pull the cuOpt container from the NVIDIA container registry.
130
130
131
131
```bash
132
132
# For CUDA 12.x
133
-
docker pull nvidia/cuopt:latest-cuda12.9-py3.13
133
+
docker pull nvidia/cuopt:latest-cuda12.9-py3.14
134
134
135
135
# For CUDA 13.x
136
-
docker pull nvidia/cuopt:latest-cuda13.0-py3.13
136
+
docker pull nvidia/cuopt:latest-cuda13.0-py3.14
137
137
```
138
138
139
-
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.
139
+
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.
140
140
141
141
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).
0 commit comments