Skip to content

Commit

Permalink
Merge pull request #33 from StephanSiemen/master
Browse files Browse the repository at this point in the history
v1.5.3 add additional test to find libraries in lib64
  • Loading branch information
StephanSiemen authored Oct 19, 2020
2 parents e4d79fa + 7820dc2 commit 1cc3029
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Magics/Magics.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@
fullname = os.path.join(os.environ.get("MAGPLUS_HOME", ""), "lib/libMagPlus.so")
if os.path.exists(fullname):
lib = fullname
else:
fullname = os.path.join(os.environ.get("MAGPLUS_HOME", ""), "lib64/libMagPlus.so")
if os.path.exists(fullname):
lib = fullname


#
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(fname):



version = "1.5.2"
version = "1.5.3"


setuptools.setup(
Expand Down Expand Up @@ -55,6 +55,7 @@ def read(fname):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
Expand Down

0 comments on commit 1cc3029

Please sign in to comment.