Bumped dependencies.

This commit is contained in:
Patrick Lehmann
2024-07-24 06:56:22 +02:00
parent 92ce834303
commit 0fef6f8a4d
6 changed files with 17 additions and 12 deletions

View File

@@ -60,10 +60,10 @@ pygments_style = "manni"
# ==============================================================================
# Restructured Text settings
# ==============================================================================
prologPath = "prolog.inc"
prologPath = Path("prolog.inc")
try:
with open(prologPath, "r") as prologFile:
rst_prolog = prologFile.read()
with prologPath.open("r", encoding="utf-8") as fileHandle:
rst_prolog = fileHandle.read()
except Exception as ex:
print(f"[ERROR:] While reading '{prologPath}'.")
print(ex)

View File

@@ -100,6 +100,9 @@ References
- `hdl/containers#48 <https://github.com/hdl/containers/issues/48>`__
.. _CONTRIBUTORS:
Contributors
************
@@ -108,6 +111,8 @@ Contributors
* `and more... <https://GitHub.com/pyTooling/Actions/graphs/contributors>`__
.. _LICENSE:
License
*******

View File

@@ -1,10 +1,10 @@
-r ../requirements.txt
pyTooling ~= 6.3
pyTooling ~= 6.5
# Enforce latest version on ReadTheDocs
sphinx ~= 7.3
docutils ~= 0.18.0
sphinx ~= 7.4
docutils ~= 0.20
# Sphinx Extenstions
#sphinx.ext.coverage