From 0fef6f8a4d732cd733f0af2b08de419f80b87761 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 24 Jul 2024 06:56:22 +0200 Subject: [PATCH] Bumped dependencies. --- doc/conf.py | 6 +++--- doc/index.rst | 5 +++++ doc/requirements.txt | 6 +++--- pyproject.toml | 4 ++-- requirements.txt | 2 +- tests/requirements.txt | 6 +++--- 6 files changed, 17 insertions(+), 12 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 40b56fe..50f9c22 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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) diff --git a/doc/index.rst b/doc/index.rst index 87f4804..0de97bd 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -100,6 +100,9 @@ References - `hdl/containers#48 `__ + +.. _CONTRIBUTORS: + Contributors ************ @@ -108,6 +111,8 @@ Contributors * `and more... `__ +.. _LICENSE: + License ******* diff --git a/doc/requirements.txt b/doc/requirements.txt index 6f7cb1f..daaff1d 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 25e31b6..63ef1c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [build-system] requires = [ - "setuptools ~= 70.0", + "setuptools ~= 71.1", "wheel ~= 0.43", - "pyTooling ~= 6.3" + "pyTooling ~= 6.5" ] build-backend = "setuptools.build_meta" diff --git a/requirements.txt b/requirements.txt index 2c08940..6c78340 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pyTooling ~= 6.3 +pyTooling ~= 6.5 diff --git a/tests/requirements.txt b/tests/requirements.txt index 4928937..ea876b3 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,13 +1,13 @@ -r ../requirements.txt # Coverage collection -Coverage ~= 7.5 +Coverage ~= 7.6 # Test Runner -pytest ~= 8.2 +pytest ~= 8.3 pytest-cov ~= 5.0 # Static Type Checking mypy ~= 1.10 typing_extensions ~= 4.12 -lxml ~= 5.1 +lxml ~= 5.2