Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Fix typo in setup.py and bump to 1.8.1 (#39)
Browse files Browse the repository at this point in the history
* Fix typo in setup.py

* Bump version to 1.8.1
  • Loading branch information
eduardo-rodrigues committed Jan 12, 2021
1 parent 3d3d18f commit 2c32416
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyjet/VERSION.txt
@@ -1 +1 @@
1.8.0
1.8.1
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -73,7 +73,7 @@ def finalize_options(self):
libpyjet.library_dirs = [os.path.join(prefix, "lib")]
libpyjet.runtime_library_dirs = libpyjet.library_dirs
libpyjet.libraries = "fastjettools", "fastjet", "CGAL", "gmp"
if os.platform.startswith("darwin"):
if sys.platform.startswith("darwin"):
libpyjet.extra_link_args.append(
"-Wl,-rpath," + os.path.join(prefix, "lib")
)
Expand Down

0 comments on commit 2c32416

Please sign in to comment.