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
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
id: set-filters
run: |
if [ "${{ needs.check-lean-ci.outputs.lean_ci_enabled }}" == "true" ]; then
echo "conda_lean_filter=[map(select(.ARCH == \"amd64\" and .PY_VER == \"3.10\")) | max_by(.CUDA_VER | split(\".\") | map(tonumber))]" >> $GITHUB_OUTPUT
echo "conda_lean_filter=[map(select(.ARCH == \"amd64\" and .PY_VER == \"3.11\")) | max_by(.CUDA_VER | split(\".\") | map(tonumber))]" >> $GITHUB_OUTPUT
echo "conda_test_filter=[map(select(.ARCH == \"amd64\" and .PY_VER == \"3.13\")) | max_by(.CUDA_VER | split(\".\") | map(tonumber))]" >> $GITHUB_OUTPUT
echo "wheel_lean_filter=[map(select(.ARCH == \"amd64\" and .PY_VER == \"3.12\")) | max_by(.CUDA_VER | split(\".\") | map(tonumber))]" >> $GITHUB_OUTPUT
echo "mps_parser_filter=[map(select(.ARCH == \"amd64\" and .PY_VER == \"3.12\")) | max_by(.CUDA_VER | split(\".\") | map(tonumber))]" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ CUDA/GPU Runtime:

Python:

* Python >=3.10.x, <= 3.13.x
* Python >=3.11.x, <= 3.13.x

OS:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ This repo is also hosted as a [COIN-OR](http://github.com/coin-or/cuopt/) projec

### Python requirements

* Python >=3.10, <=3.13
* Python >=3.11, <=3.13

### OS requirements

Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-129_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies:
- pyrsistent
- pytest-cov
- pytest<9.0
- python>=3.10,<3.14
- python>=3.11,<3.14
- pyyaml>=6.0.0
- rapids-build-backend>=0.4.0,<0.5.0
- rapids-logger==0.2.*,>=0.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies:
- pyrsistent
- pytest-cov
- pytest<9.0
- python>=3.10,<3.14
- python>=3.11,<3.14
- pyyaml>=6.0.0
- rapids-build-backend>=0.4.0,<0.5.0
- rapids-logger==0.2.*,>=0.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-131_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies:
- pyrsistent
- pytest-cov
- pytest<9.0
- python>=3.10,<3.14
- python>=3.11,<3.14
- pyyaml>=6.0.0
- rapids-build-backend>=0.4.0,<0.5.0
- rapids-logger==0.2.*,>=0.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-131_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies:
- pyrsistent
- pytest-cov
- pytest<9.0
- python>=3.10,<3.14
- python>=3.11,<3.14
- pyyaml>=6.0.0
- rapids-build-backend>=0.4.0,<0.5.0
- rapids-logger==0.2.*,>=0.0.0a0
Expand Down
6 changes: 1 addition & 5 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -779,10 +779,6 @@ dependencies:
specific:
- output_types: conda
matrices:
- matrix:
py: "3.10"
packages:
- python=3.10
- matrix:
py: "3.11"
packages:
Expand All @@ -797,4 +793,4 @@ dependencies:
- python=3.13
- matrix:
packages:
- python>=3.10,<3.14
- python>=3.11,<3.14
4 changes: 2 additions & 2 deletions docs/cuopt/source/system-requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Dependencies are installed automatically when using the pip and Conda installati
- 12.0+

* Python:
- >= 3.10.* and <= 3.13.*
- >= 3.11.* and <= 3.13.*

* NVIDIA drivers:
- 525.60.13+ (Linux)
Expand Down Expand Up @@ -98,4 +98,4 @@ Thin-client for Self-Hosted
- x86-64
- ARM64

* Python >= 3.10.x <= 3.13.x
* Python >= 3.11.x <= 3.13.x
3 changes: 1 addition & 2 deletions python/cuopt/cuopt/linear_programming/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ authors = [
{ name = "NVIDIA Corporation" },
]
license = "Apache-2.0"
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.23.5,<3.0",
"rapids-logger==0.2.*,>=0.0.0a0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../../../dependencies.yaml and run `rapids-dependency-file-generator`.
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down
3 changes: 1 addition & 2 deletions python/cuopt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ authors = [
{ name = "NVIDIA Corporation" },
]
license = "Apache-2.0"
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"cuda-python>=13.0.1,<14.0",
"cudf==26.4.*,>=0.0.0a0",
Expand All @@ -37,7 +37,6 @@ dependencies = [
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down
3 changes: 1 addition & 2 deletions python/cuopt_self_hosted/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ authors = [
]
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"cuopt-mps-parser==26.4.*,>=0.0.0a0",
"msgpack-numpy==0.4.8",
Expand All @@ -27,7 +27,6 @@ dependencies = [
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down
3 changes: 1 addition & 2 deletions python/cuopt_server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ authors = [
]
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"cuopt==26.4.*,>=0.0.0a0",
"cupy-cuda13x>=13.6.0",
Expand All @@ -35,7 +35,6 @@ dependencies = [
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down
3 changes: 1 addition & 2 deletions python/libcuopt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ authors = [
{ name = "NVIDIA Corporation" },
]
license = "Apache-2.0"
requires-python = ">=3.10"
requires-python = ">=3.11"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Programming Language :: C++",
"Environment :: GPU :: NVIDIA CUDA",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down