Bumped dependencies.

This commit is contained in:
Patrick Lehmann
2024-04-23 23:27:42 +02:00
parent 0e567aebc4
commit 0802f6d02f
5 changed files with 13 additions and 13 deletions

View File

@@ -47,10 +47,10 @@ jobs:
- name: ⏬ Checkout repository
uses: actions/checkout@v4
- name: 🐍 Setup Python 3.11
- name: 🐍 Setup Python ${{ inputs.python_version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: ${{ inputs.python_version }}
- name: 🔧 Install wheel,tomli and pip dependencies (native)
run: |

View File

@@ -1,10 +1,10 @@
-r ../requirements.txt
pyTooling ~= 6.0
pyTooling ~= 6.1
# Enforce latest version on ReadTheDocs
sphinx >= 7.1, < 8.0
docutils >= 0.18.0, < 0.19.0
sphinx ~= 7.2
docutils ~= 0.18.0
# Sphinx Extenstions
#sphinx.ext.coverage

View File

@@ -2,7 +2,7 @@
requires = [
"setuptools >= 69.0.0",
"wheel >= 0.40.0",
"pyTooling ~= 6.0"
"pyTooling ~= 6.1"
]
build-backend = "setuptools.build_meta"

View File

@@ -1 +1 @@
pyTooling ~= 6.0
pyTooling ~= 6.1

View File

@@ -1,13 +1,13 @@
-r ../requirements.txt
# Coverage collection
Coverage >= 7.4
Coverage ~= 7.5
# Test Runner
pytest >= 7.4.0
pytest-cov >= 4.1.0
pytest ~= 8.1
pytest-cov ~= 5.0
# Static Type Checking
mypy >= 1.8.0
typing_extensions >= 4.9.0
lxml >= 5.0
mypy ~= 1.9
typing_extensions ~= 4.11
lxml ~= 5.1