@@ -39,22 +39,20 @@ classifiers = [
3939 " Programming Language :: Python :: 3.13" ,
4040 " Programming Language :: Python :: Implementation :: CPython" ,
4141 " Environment :: GPU :: NVIDIA CUDA" ,
42- " Environment :: GPU :: NVIDIA CUDA :: 11" ,
4342 " Environment :: GPU :: NVIDIA CUDA :: 12" ,
43+ " Environment :: GPU :: NVIDIA CUDA :: 13" ,
4444]
4545dependencies = [
4646 " numpy" ,
4747]
4848
4949[project .optional-dependencies ]
50- cu11 = [" cuda-bindings[all]==11.8.*" ]
5150cu12 = [" cuda-bindings[all]==12.*" ]
5251cu13 = [" cuda-bindings[all]==13.*" ]
5352# TODO: these should all be in development dependencies; optional dependencies
5453# are for features exposed to *users*, not a dumping ground for all tooling
5554# needed to build and test the project
5655test = [" cython>=3.1" , " setuptools" , " pytest>=6.2.4" ]
57- test-cu11 = [" cuda-core[test]" , " cupy-cuda11x; python_version < '3.14'" , " cuda-toolkit[cudart]==11.*" ] # runtime headers needed by CuPy
5856test-cu12 = [" cuda-core[test]" , " cupy-cuda12x; python_version < '3.14'" , " cuda-toolkit[cudart]==12.*" ] # runtime headers needed by CuPy
5957test-cu13 = [" cuda-core[test]" , " cupy-cuda13x; python_version < '3.14'" , " cuda-toolkit[cudart]==13.*" ] # runtime headers needed by CuPy
6058# free threaded build, cupy doesn't support free-threaded builds yet, so avoid installing it for now
0 commit comments