mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Bumped dependencies.
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
@@ -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
|
||||||
*******
|
*******
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
pyTooling ~= 6.3
|
pyTooling ~= 6.5
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user