Skip to content

Commit d90eb8a

Browse files
committed
Require poetry 2.0 and fix deprecation warnings
1 parent 922fe9f commit d90eb8a

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

pyproject.toml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
[tool.poetry]
2-
package-mode = false
1+
[project]
32
name = "ndn-101"
3+
version = "1.0"
4+
requires-python = ">=3.11"
5+
dependencies = [
6+
"mkdocs-material (>=9.6,<10.0)",
7+
"mkdocs-bibtex (>=2.11,<3.0)",
8+
"pypandoc-binary (>=1.12,<2.0)"
9+
]
410

5-
[tool.poetry.dependencies]
6-
python = "^3.11"
7-
mkdocs-material = "^9.5.3"
8-
mkdocs-bibtex = "^2.11.0"
9-
pypandoc-binary = "^1.12"
11+
[tool.poetry]
12+
package-mode = false
1013

1114
[build-system]
12-
requires = ["poetry-core"]
15+
requires = ["poetry-core>=2.0.0,<3.0.0"]
1316
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)