We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c54d63e commit f8370fdCopy full SHA for f8370fd
stumpy/cache.py
@@ -168,7 +168,12 @@ def _get_cache(cache_dir=None):
168
else: # pragma: no cover
169
site_pkg_dir = site.getsitepackages()[0]
170
numba_cache_dir = site_pkg_dir + "/stumpy/__pycache__"
171
- return [f.name for f in pathlib.Path(numba_cache_dir).glob("*nb*") if f.is_file()]
+
172
+ return [
173
+ f"{numba_cache_dir}/{f.name}"
174
+ for f in pathlib.Path(numba_cache_dir).glob("*nb*")
175
+ if f.is_file()
176
+ ]
177
178
179
def _recompile():
0 commit comments