numba-cuda 0.0.17__py3-none-any.whl → 0.0.17.1__py3-none-any.whl

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.
_numba_cuda_redirector.py CHANGED
@@ -67,9 +67,15 @@ class NumbaCudaFinder(importlib.abc.MetaPathFinder):
67
67
  oot_path = [p.replace(self.numba_path, self.numba_cuda_path)
68
68
  for p in path]
69
69
  for finder in sys.meta_path:
70
- spec = finder.find_spec(name, oot_path, target)
71
- if spec is not None:
72
- return spec
70
+ try:
71
+ spec = finder.find_spec(name, oot_path, target)
72
+ except AttributeError:
73
+ # Finders written to a pre-Python 3.4 spec for finders will
74
+ # not implement find_spec. We can skip those altogether.
75
+ continue
76
+ else:
77
+ if spec is not None:
78
+ return spec
73
79
 
74
80
 
75
81
  finder = NumbaCudaFinder()
numba_cuda/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.17
1
+ 0.0.17.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: numba-cuda
3
- Version: 0.0.17
3
+ Version: 0.0.17.1
4
4
  Summary: CUDA target for Numba
5
5
  Author: Anaconda Inc., NVIDIA Corporation
6
6
  License: BSD 2-clause
@@ -1,6 +1,6 @@
1
1
  _numba_cuda_redirector.pth,sha256=cmfMMmV0JPh3yEpl4bGeM9AuXiVVMSo6Z_b7RaQL3XE,30
2
- _numba_cuda_redirector.py,sha256=rc56rnb40w3AtrqnhS66JSgYTSTsi3iTn8yP3NuoQV8,2401
3
- numba_cuda/VERSION,sha256=DrDiKI3dlaPMnBVpW_StEAewYnizS9fPRlkzxw22ubA,7
2
+ _numba_cuda_redirector.py,sha256=QKJmYICSQvjvph0Zw9OW015MsuKxIF28GPFjR35AXLM,2681
3
+ numba_cuda/VERSION,sha256=6FCxgDgZBaWXSrJJXsqWQEsixHPQbo-d1U4n83DSH7g,9
4
4
  numba_cuda/__init__.py,sha256=atXeUvJKR3JHcAiCFbXCVOJQUHgB1TulmsqSL_9RT3Q,114
5
5
  numba_cuda/_version.py,sha256=jbdUsbR7sVllw0KxQNB0-FMd929CGg3kH2fhHdrlkuc,719
6
6
  numba_cuda/numba/cuda/__init__.py,sha256=idyVHOObC9lTYnp62v7rVprSacRM4d5F6vhXfG5ElTI,621
@@ -224,8 +224,8 @@ numba_cuda/numba/cuda/tests/nocuda/test_function_resolution.py,sha256=o4DYocyHK7
224
224
  numba_cuda/numba/cuda/tests/nocuda/test_import.py,sha256=teiL8rpFGQOh41kyBSSNHHFYAJYgpdStXkTcpK4_fxo,1641
225
225
  numba_cuda/numba/cuda/tests/nocuda/test_library_lookup.py,sha256=7kJOPHEcrjy_kTA9Ym-iT_B972bgFRu3UkRtwIgWtuI,7948
226
226
  numba_cuda/numba/cuda/tests/nocuda/test_nvvm.py,sha256=n0_-xFaw6QqiZbhe55oy7lnEeOwqTvA55p5EUFiTpNw,2006
227
- numba_cuda-0.0.17.dist-info/LICENSE,sha256=eHeYE-XjASmwbxfsP5AImgfzRwZurZGqH1f6OFwJ4io,1326
228
- numba_cuda-0.0.17.dist-info/METADATA,sha256=gEDhruReJA6UTqMZDNev7vHJsahF41oGVd_fTJNJmA8,1393
229
- numba_cuda-0.0.17.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
230
- numba_cuda-0.0.17.dist-info/top_level.txt,sha256=C50SsH-8tXDmt7I0Y3nlJYhS5s6pqWflCPdobe9vx2M,11
231
- numba_cuda-0.0.17.dist-info/RECORD,,
227
+ numba_cuda-0.0.17.1.dist-info/LICENSE,sha256=eHeYE-XjASmwbxfsP5AImgfzRwZurZGqH1f6OFwJ4io,1326
228
+ numba_cuda-0.0.17.1.dist-info/METADATA,sha256=G8bWlMk6jnn9gsU_Bo0WTDlG3EvU4ODk54tLQC9Rrq0,1395
229
+ numba_cuda-0.0.17.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
230
+ numba_cuda-0.0.17.1.dist-info/top_level.txt,sha256=C50SsH-8tXDmt7I0Y3nlJYhS5s6pqWflCPdobe9vx2M,11
231
+ numba_cuda-0.0.17.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5