Skip to content

Commit 8f6c1bc

Browse files
committed
bump version to 0.3.0b4
1 parent a2f6305 commit 8f6c1bc

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

cobra/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0b3
1+
0.3.0b4

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,10 @@ def get_tag(self):
9696
except ImportError:
9797
pass
9898

99-
build_args["libraries"] = ["glpk", "gmp"]
99+
if system() == "Windows":
100+
build_args["libraries"] = ["glpk"]
101+
else:
102+
build_args["libraries"] = ["glpk", "gmp"]
100103
# It is possible to statically link libglpk to the built extension. This
101104
# allows for simplified installation without the need to install libglpk to
102105
# the system, and is also usueful when installing a particular version of

0 commit comments

Comments
 (0)