Skip to content

Commit

Permalink
Workaround version not being passed to setup.py by cibuildwheel for now
Browse files Browse the repository at this point in the history
  • Loading branch information
nalinigans committed Dec 16, 2024
1 parent 57d0829 commit 26e3967
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
GENOMICSDB_INSTALL_PATH = os.getenv("GENOMICSDB_HOME", default="genomicsdb")
copy_genomicsdb_libs = False
copy_protobuf_definitions = False
with_version = "0.0.9.14"
with_version = "0.0.9.17"

args = sys.argv[:]
for arg in args:
Expand All @@ -58,7 +58,6 @@
with_version = arg.split("=")[1]
sys.argv.remove(arg)

print("GenomicsDB-Python Version={}".format(with_version))
print("Compiled GenomicsDB Install Path: {}".format(GENOMICSDB_INSTALL_PATH))

GENOMICSDB_INCLUDE_DIR = os.path.join(GENOMICSDB_INSTALL_PATH, "include")
Expand Down

0 comments on commit 26e3967

Please sign in to comment.