-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This requires removing the Poetry lockfiles as it appears impossible to have a single lock spanning such a diverse set of Python interpreters.
- Loading branch information
1 parent
9d33e3b
commit 8b7ce5c
Showing
6 changed files
with
49 additions
and
505 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
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 |
---|---|---|
|
@@ -14,4 +14,5 @@ build/ | |
*.so | ||
*.egg-info/ | ||
**/dist/ | ||
__pycache__ | ||
__pycache__ | ||
poetry.lock |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[build-system] | ||
build-backend = "maturin" | ||
requires = ["poetry_core>=1.0.0"] | ||
requires = ["maturin>=0.12,<0.13"] | ||
|
||
[tool.poetry] | ||
name = "numpy-linalg-example" | ||
|
@@ -10,7 +10,8 @@ authors = ["Yuji Kanagawa <[email protected]>"] | |
|
||
[tool.poetry.dependencies] | ||
numpy = ">=1.18" | ||
python = ">=3.6" | ||
python = ">=3.7,<3.11" | ||
|
||
[tool.poetry.dev-dependencies] | ||
maturin = ">=0.12,<0.13" | ||
pytest = "^6.1" |
Oops, something went wrong.