Skip to content

Commit

Permalink
Fix Mac builds
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Jun 24, 2024
1 parent 7d2e91a commit d78983f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyqrack/qrack_system/qrack_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self):
elif _platform == "win32":
shared_lib_path = str(path / "qrack_lib/qrack_pinvoke.dll")
elif _platform == "darwin":
shared_lib_path = str(path / "qrack_lib/qrack_pinvoke.dylib")
shared_lib_path = str(path / "qrack_lib/libqrack_pinvoke.dylib")
else:
shared_lib_path = str(path / "qrack_lib/libqrack_pinvoke.so")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup


VERSION = "1.29.3"
VERSION = "1.29.4"

# Read long description from README.
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
Expand Down

0 comments on commit d78983f

Please sign in to comment.