From e7e55b0d4105154a6051a69ba17375c74f29c51e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 23:13:29 +0100 Subject: [PATCH 1/6] Bump the python-packages group across 1 directory with 2 updates (#277) Bumps the python-packages group with 2 updates in the / directory: [sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints) and [pygit2](https://github.com/libgit2/pygit2). Updates `sphinx-autodoc-typehints` from 2.5.0 to 3.0.1 - [Release notes](https://github.com/tox-dev/sphinx-autodoc-typehints/releases) - [Commits](https://github.com/tox-dev/sphinx-autodoc-typehints/compare/2.5.0...3.0.1) Updates `pygit2` from 1.16.0 to 1.17.0 - [Changelog](https://github.com/libgit2/pygit2/blob/master/CHANGELOG.md) - [Commits](https://github.com/libgit2/pygit2/compare/v1.16.0...v1.17.0) --- updated-dependencies: - dependency-name: sphinx-autodoc-typehints dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-packages - dependency-name: pygit2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docs/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index b84252b..02e2480 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,7 +1,7 @@ sphinx==8.1.3 -sphinx-autodoc-typehints==2.5.0 +sphinx-autodoc-typehints==3.0.1 sphinxawesome-theme==5.3.2 myst-parser==4.0.0 -pygit2==1.16.0 +pygit2==1.17.0 agogos==0.4.0 torch==2.5.1 From 1500c264e6a2fe6e4581323c4a329a184e9c662e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 17:41:56 -0500 Subject: [PATCH 2/6] Bump the python-packages group with 3 updates (#280) Bumps the python-packages group with 3 updates: [torch](https://github.com/pytorch/pytorch), [sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints) and [pygit2](https://github.com/libgit2/pygit2). Updates `torch` from 2.5.1 to 2.6.0 - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v2.5.1...v2.6.0) Updates `sphinx-autodoc-typehints` from 2.5.0 to 3.0.1 - [Release notes](https://github.com/tox-dev/sphinx-autodoc-typehints/releases) - [Commits](https://github.com/tox-dev/sphinx-autodoc-typehints/compare/2.5.0...3.0.1) Updates `pygit2` from 1.16.0 to 1.17.0 - [Changelog](https://github.com/libgit2/pygit2/blob/master/CHANGELOG.md) - [Commits](https://github.com/libgit2/pygit2/compare/v1.16.0...v1.17.0) --- updated-dependencies: - dependency-name: torch dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: sphinx-autodoc-typehints dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-packages - dependency-name: pygit2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 02e2480..4491302 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -4,4 +4,4 @@ sphinxawesome-theme==5.3.2 myst-parser==4.0.0 pygit2==1.17.0 agogos==0.4.0 -torch==2.5.1 +torch==2.6.0 From 401ef2acb2772dcad9608fa5463a265644efc92b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Feb 2025 23:36:44 +0100 Subject: [PATCH 3/6] Bump actions/upload-artifact from 4.3.6 to 4.6.0 (#279) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.6 to 4.6.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.6...v4.6.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/main-branch-testing.yml | 2 +- .github/workflows/publish-package.yml | 2 +- .github/workflows/version-branch-testing.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main-branch-testing.yml b/.github/workflows/main-branch-testing.yml index 221b4df..c3e116b 100644 --- a/.github/workflows/main-branch-testing.yml +++ b/.github/workflows/main-branch-testing.yml @@ -41,7 +41,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Build the package run: rye build - - uses: actions/upload-artifact@v4.3.6 + - uses: actions/upload-artifact@v4.6.0 with: path: ./dist name: dist-python-${{ matrix.python-version }} diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 0c21625..a13c5e6 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -13,7 +13,7 @@ jobs: uses: eifinger/setup-rye@v4.2.1 - name: Build the package run: rye build - - uses: actions/upload-artifact@v4.3.6 + - uses: actions/upload-artifact@v4.6.0 with: path: ./dist diff --git a/.github/workflows/version-branch-testing.yml b/.github/workflows/version-branch-testing.yml index 056e1f5..61649b6 100644 --- a/.github/workflows/version-branch-testing.yml +++ b/.github/workflows/version-branch-testing.yml @@ -28,6 +28,6 @@ jobs: uses: eifinger/setup-rye@v4.2.1 - name: Build the package run: rye build - - uses: actions/upload-artifact@v4.3.6 + - uses: actions/upload-artifact@v4.6.0 with: path: ./dist From 98c63209a729acd054c9d28d6634d9d695a376cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Mar 2025 02:32:12 +0000 Subject: [PATCH 4/6] Bump the python-packages group with 5 updates Bumps the python-packages group with 5 updates: | Package | From | To | | --- | --- | --- | | [torch](https://github.com/pytorch/pytorch) | `2.5.1` | `2.6.0` | | [sphinx](https://github.com/sphinx-doc/sphinx) | `8.1.3` | `8.2.1` | | [sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints) | `2.5.0` | `3.1.0` | | [myst-parser](https://github.com/executablebooks/MyST-Parser) | `4.0.0` | `4.0.1` | | [pygit2](https://github.com/libgit2/pygit2) | `1.16.0` | `1.17.0` | Updates `torch` from 2.5.1 to 2.6.0 - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v2.5.1...v2.6.0) Updates `sphinx` from 8.1.3 to 8.2.1 - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/v8.2.1/CHANGES.rst) - [Commits](https://github.com/sphinx-doc/sphinx/compare/v8.1.3...v8.2.1) Updates `sphinx-autodoc-typehints` from 2.5.0 to 3.1.0 - [Release notes](https://github.com/tox-dev/sphinx-autodoc-typehints/releases) - [Commits](https://github.com/tox-dev/sphinx-autodoc-typehints/compare/2.5.0...3.1.0) Updates `myst-parser` from 4.0.0 to 4.0.1 - [Release notes](https://github.com/executablebooks/MyST-Parser/releases) - [Changelog](https://github.com/executablebooks/MyST-Parser/blob/master/CHANGELOG.md) - [Commits](https://github.com/executablebooks/MyST-Parser/compare/v4.0.0...v4.0.1) Updates `pygit2` from 1.16.0 to 1.17.0 - [Changelog](https://github.com/libgit2/pygit2/blob/master/CHANGELOG.md) - [Commits](https://github.com/libgit2/pygit2/compare/v1.16.0...v1.17.0) --- updated-dependencies: - dependency-name: torch dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: sphinx dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages - dependency-name: sphinx-autodoc-typehints dependency-type: direct:production update-type: version-update:semver-major dependency-group: python-packages - dependency-name: myst-parser dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-packages - dependency-name: pygit2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-packages ... Signed-off-by: dependabot[bot] --- docs/requirements.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index b84252b..cfc8d87 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,7 +1,7 @@ -sphinx==8.1.3 -sphinx-autodoc-typehints==2.5.0 +sphinx==8.2.1 +sphinx-autodoc-typehints==3.1.0 sphinxawesome-theme==5.3.2 -myst-parser==4.0.0 -pygit2==1.16.0 +myst-parser==4.0.1 +pygit2==1.17.0 agogos==0.4.0 -torch==2.5.1 +torch==2.6.0 From 2594b73e8c3ca8010d3373e6ef2c28fac5d10df3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 20:48:14 +0100 Subject: [PATCH 5/6] Bump actions/download-artifact from 4.1.8 to 4.1.9 (#287) Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.1.8 to 4.1.9. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.8...v4.1.9) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index a13c5e6..e668fc5 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -27,7 +27,7 @@ jobs: # IMPORTANT: this permission is mandatory for trusted publishing id-token: write steps: - - uses: actions/download-artifact@v4.1.8 + - uses: actions/download-artifact@v4.1.9 - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 From 56492c42506ff249bd13e799cda27a5454469449 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 20:48:28 +0100 Subject: [PATCH 6/6] Bump actions/upload-artifact from 4.6.0 to 4.6.1 (#286) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.6.0 to 4.6.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.6.0...v4.6.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/main-branch-testing.yml | 2 +- .github/workflows/publish-package.yml | 2 +- .github/workflows/version-branch-testing.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main-branch-testing.yml b/.github/workflows/main-branch-testing.yml index c3e116b..ec37bd2 100644 --- a/.github/workflows/main-branch-testing.yml +++ b/.github/workflows/main-branch-testing.yml @@ -41,7 +41,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Build the package run: rye build - - uses: actions/upload-artifact@v4.6.0 + - uses: actions/upload-artifact@v4.6.1 with: path: ./dist name: dist-python-${{ matrix.python-version }} diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index e668fc5..f8753a7 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -13,7 +13,7 @@ jobs: uses: eifinger/setup-rye@v4.2.1 - name: Build the package run: rye build - - uses: actions/upload-artifact@v4.6.0 + - uses: actions/upload-artifact@v4.6.1 with: path: ./dist diff --git a/.github/workflows/version-branch-testing.yml b/.github/workflows/version-branch-testing.yml index 61649b6..fe6da49 100644 --- a/.github/workflows/version-branch-testing.yml +++ b/.github/workflows/version-branch-testing.yml @@ -28,6 +28,6 @@ jobs: uses: eifinger/setup-rye@v4.2.1 - name: Build the package run: rye build - - uses: actions/upload-artifact@v4.6.0 + - uses: actions/upload-artifact@v4.6.1 with: path: ./dist