From bfa0cb3c03ba02df0d53659aa5235611d701c574 Mon Sep 17 00:00:00 2001 From: Minh-Thuc <46375464+minhthuc2502@users.noreply.github.com> Date: Tue, 12 Mar 2024 09:57:17 +0100 Subject: [PATCH] Fix classifiers cuda 12 (#1640) --- python/setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/python/setup.py b/python/setup.py index 6f496cc5a..7f56d6074 100644 --- a/python/setup.py +++ b/python/setup.py @@ -75,10 +75,9 @@ def _maybe_add_library_root(lib_name): url="https://opennmt.net", classifiers=[ "Development Status :: 5 - Production/Stable", - "Environment :: GPU :: NVIDIA CUDA :: 12.0", - "Environment :: GPU :: NVIDIA CUDA :: 12.1", - "Environment :: GPU :: NVIDIA CUDA :: 12.2", - "Environment :: GPU :: NVIDIA CUDA :: 12.3", + "Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.0", + "Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.1", + "Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.2", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License",