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 # Restructured Text settings
# ============================================================================== # ==============================================================================
prologPath = "prolog.inc" prologPath = Path("prolog.inc")
try: try:
with open(prologPath, "r") as prologFile: with prologPath.open("r", encoding="utf-8") as fileHandle:
rst_prolog = prologFile.read() rst_prolog = fileHandle.read()
except Exception as ex: except Exception as ex:
print(f"[ERROR:] While reading '{prologPath}'.") print(f"[ERROR:] While reading '{prologPath}'.")
print(ex) print(ex)

View File

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

View File

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

View File

@@ -1,8 +1,8 @@
[build-system] [build-system]
requires = [ requires = [
"setuptools ~= 70.0", "setuptools ~= 71.1",
"wheel ~= 0.43", "wheel ~= 0.43",
"pyTooling ~= 6.3" "pyTooling ~= 6.5"
] ]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"

View File

@@ -1 +1 @@
pyTooling ~= 6.3 pyTooling ~= 6.5

View File

@@ -1,13 +1,13 @@
-r ../requirements.txt -r ../requirements.txt
# Coverage collection # Coverage collection
Coverage ~= 7.5 Coverage ~= 7.6
# Test Runner # Test Runner
pytest ~= 8.2 pytest ~= 8.3
pytest-cov ~= 5.0 pytest-cov ~= 5.0
# Static Type Checking # Static Type Checking
mypy ~= 1.10 mypy ~= 1.10
typing_extensions ~= 4.12 typing_extensions ~= 4.12
lxml ~= 5.1 lxml ~= 5.2