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 fbfc559 commit 6f2be6fCopy full SHA for 6f2be6f
docs/source/conf.py
@@ -54,9 +54,9 @@
54
# built documents.
55
#
56
# The short X.Y version.
57
-import tomli
+import tomllib
58
with open("../../pyproject.toml", "rb") as f:
59
- toml_dict = tomli.load(f)
+ toml_dict = tomllib.load(f)
60
version = toml_dict['project']['version']
61
# The full version, including alpha/beta/rc tags.
62
release = version
requirements.txt
@@ -4,5 +4,4 @@ wheel
4
Cython
5
Sphinx
6
flake8
7
-tomli
8
pytest>=8.0.0
0 commit comments