From e386bc0f093e04250367059adce5f496f47e081c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 10:48:07 +0000 Subject: [PATCH 1/2] Bump sphinx from 7.2.6 to 8.1.3 in /docs Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 7.2.6 to 8.1.3. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/v8.1.3/CHANGES.rst) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v7.2.6...v8.1.3) --- updated-dependencies: - dependency-name: sphinx dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 1e78a63..e5cb50f 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,3 @@ furo==2024.1.29 -sphinx==7.2.6 +sphinx==8.1.3 myst_parser==2.0.0 From a64ce0aaf3c78f9b65218a90cac8e06be8234501 Mon Sep 17 00:00:00 2001 From: staticdev Date: Mon, 30 Dec 2024 11:55:39 +0100 Subject: [PATCH 2/2] Fix upload coverage data --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dd44367..4e97a16 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,7 +82,8 @@ jobs: uses: "actions/upload-artifact@v4" with: name: coverage-data-${{ matrix.python }}-${{ matrix.os }} - path: ".coverage.*" + path: .coverage.* + include-hidden-files: true - name: Upload documentation if: matrix.session == 'docs-build'