Skip to content

Commit 775d6d0

Browse files
committed
Make Python project settings used by examples PEP-517 compliant.
1 parent 3850501 commit 775d6d0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

examples/linalg/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[build-system]
22
build-backend = "maturin"
3+
requires = ["poetry_core>=1.0.0"]
34

45
[tool.poetry]
56
name = "numpy-linalg-example"
@@ -12,4 +13,4 @@ numpy = ">=1.18"
1213
python = ">=3.6"
1314

1415
[tool.poetry.dev-dependencies]
15-
pytest = "^6.1"
16+
pytest = "^6.1"

examples/simple-extension/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[build-system]
22
build-backend = "maturin"
3+
requires = ["poetry_core>=1.0.0"]
34

45
[tool.poetry]
56
name = "numpy-example"

0 commit comments

Comments
 (0)