diff --git a/.github/workflows/CompletePipeline.yml b/.github/workflows/CompletePipeline.yml index ba135c0..267e3b7 100644 --- a/.github/workflows/CompletePipeline.yml +++ b/.github/workflows/CompletePipeline.yml @@ -230,7 +230,7 @@ jobs: with: python_version: ${{ needs.UnitTestingParams.outputs.python_version }} coverage_report_json_directory: ${{ needs.ConfigParams.outputs.coverage_report_json_directory }} - unittest_xml_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}-ubuntu-native-3.12 + unittest_xml_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }} coverage_json_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_json }} html_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_html }} latex_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }} diff --git a/doc/requirements.txt b/doc/requirements.txt index 5665d1d..374a70e 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,6 +1,6 @@ -r ../requirements.txt -pyTooling ~= 8.2 +pyTooling ~= 8.3 # Enforce latest version on ReadTheDocs sphinx ~= 8.2 diff --git a/pyproject.toml b/pyproject.toml index 74c4ee3..0145a0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [build-system] requires = [ - "setuptools ~= 75.8", + "setuptools ~= 76.0", "wheel ~= 0.45", - "pyTooling ~= 8.2" + "pyTooling ~= 8.3" ] build-backend = "setuptools.build_meta" diff --git a/releaser/releaser.py b/releaser/releaser.py index b8fa13a..a75d1ad 100755 --- a/releaser/releaser.py +++ b/releaser/releaser.py @@ -5,7 +5,7 @@ # Unai Martinez-Corral # # # # ==================================================================================================================== # -# Copyright 2020-2024 The pyTooling Authors # +# Copyright 2020-2025 The pyTooling Authors # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # diff --git a/requirements.txt b/requirements.txt index 2c498e0..88a2dac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pyTooling ~= 8.2 +pyTooling ~= 8.3 diff --git a/tests/requirements.txt b/tests/requirements.txt index b20836a..c88ae88 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,7 +1,7 @@ -r ../requirements.txt # Coverage collection -Coverage ~= 7.6 +Coverage ~= 7.7 # Test Runner pytest ~= 8.3