-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e91ffa3
commit 25ab31a
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,10 @@ name = "pcst_fast" | |
dynamic = ["version"] | ||
description = "A fast implementation of the Goemans-Williamson scheme for the prize-collecting Steiner tree / forest problem." | ||
readme = "README.md" | ||
license = {text = "GNU General Public License"} | ||
license = {text = "MIT"} | ||
authors = [ | ||
{name = "ludwigschmidt", email = "[email protected]"}, | ||
{name = "ludwigschmidt"}, | ||
{name = "alexlenail"}, | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = ["numpy<2"] | ||
|
@@ -23,4 +24,4 @@ test-command = "pytest {project}/src" | |
build-verbosity = 1 | ||
|
||
[tool.cibuildwheel.macos] | ||
before-test = "pip cache remove numpy; brew install openblas; OPENBLAS=\"$(brew --prefix openblas)\" pip install --no-cache-dir -U pip numpy" | ||
before-test = "pip cache remove numpy; brew install openblas; OPENBLAS=\"$(brew --prefix openblas)\" pip install --no-cache-dir -U pip numpy" |