cuquantum-python 26.3.0__tar.gz → 26.3.0.post0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cuquantum-python
3
- Version: 26.3.0
3
+ Version: 26.3.0.post0
4
4
  Summary: NVIDIA cuQuantum Python
5
5
  Home-page: https://developer.nvidia.com/cuquantum-sdk
6
6
  Author: NVIDIA Corporation
@@ -31,7 +31,7 @@
31
31
  # THE SOFTWARE.
32
32
 
33
33
  import ctypes
34
- import pkg_resources
34
+ import importlib.metadata
35
35
  import os
36
36
  import sys
37
37
  from typing import Dict, List, Optional
@@ -164,9 +164,9 @@ def _find_installed_packages() -> List[str]:
164
164
 
165
165
  for pkg in list(map(f, PACKAGE_SUPPORTED_CUDA_VER)):
166
166
  try:
167
- pkg_resources.get_distribution(pkg)
167
+ importlib.metadata.distribution(pkg)
168
168
  found.append(pkg)
169
- except pkg_resources.DistributionNotFound:
169
+ except importlib.metadata.PackageNotFoundError:
170
170
  pass
171
171
  return found
172
172
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cuquantum-python
3
- Version: 26.3.0
3
+ Version: 26.3.0.post0
4
4
  Summary: NVIDIA cuQuantum Python
5
5
  Home-page: https://developer.nvidia.com/cuquantum-sdk
6
6
  Author: NVIDIA Corporation
@@ -17,7 +17,7 @@ from cuda_autodetect import infer_best_package, bdist_wheel
17
17
 
18
18
  # Update this for every release
19
19
  # Must pin to the cuquantum-python-cuXX version
20
- package_ver = "26.3.0"
20
+ package_ver = "26.3.0.post0"
21
21
  package_name = "cuquantum-python"
22
22
 
23
23