We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f6305 commit 8f6c1bcCopy full SHA for 8f6c1bc
cobra/VERSION
@@ -1 +1 @@
1
-0.3.0b3
+0.3.0b4
setup.py
@@ -96,7 +96,10 @@ def get_tag(self):
96
except ImportError:
97
pass
98
99
- build_args["libraries"] = ["glpk", "gmp"]
+ if system() == "Windows":
100
+ build_args["libraries"] = ["glpk"]
101
+ else:
102
+ build_args["libraries"] = ["glpk", "gmp"]
103
# It is possible to statically link libglpk to the built extension. This
104
# allows for simplified installation without the need to install libglpk to
105
# the system, and is also usueful when installing a particular version of
0 commit comments