Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rbeucher committed Mar 30, 2022
1 parent c01daa7 commit 294354c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stripy/__init__.py
Expand Up @@ -31,7 +31,8 @@
if _os.path.isdir(extra_dll_dir):
_os.environ["PATH"] += _os.pathsep + extra_dll_dir
if sys.version_info.minor >= 8:
_os.add_dll_directory(_os.path.join(_os.path.dirname(__file__), '.libs'))
if _os.path.isdir(extra_dll_dir):
_os.add_dll_directory(extra_dll_dir)


from .spherical import sTriangulation
Expand Down

0 comments on commit 294354c

Please sign in to comment.