nidhal baccouri
commited on
Commit
·
4503f1b
1
Parent(s):
363d508
fixed path to toml file in docs
Browse files- docs/conf.py +1 -1
docs/conf.py
CHANGED
|
@@ -58,7 +58,7 @@ author = "Nidhal Baccouri"
|
|
| 58 |
#
|
| 59 |
# The short X.Y version.
|
| 60 |
import toml
|
| 61 |
-
with open("pyproject.toml", "r") as f:
|
| 62 |
tom = toml.load(f)
|
| 63 |
version = tom['tool']['poetry']['version']
|
| 64 |
# The full version, including alpha/beta/rc tags.
|
|
|
|
| 58 |
#
|
| 59 |
# The short X.Y version.
|
| 60 |
import toml
|
| 61 |
+
with open("../pyproject.toml", "r") as f:
|
| 62 |
tom = toml.load(f)
|
| 63 |
version = tom['tool']['poetry']['version']
|
| 64 |
# The full version, including alpha/beta/rc tags.
|