Skip to content

Commit 99cbdc0

Browse files
dependabot[bot]LeonidElkin
authored andcommitted
chore(deps): bump the dependencies group with 6 updates
Bumps the dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `5` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/upload-pages-artifact` from 3 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v5) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v4...v5) chore(deps-dev): bump the dependencies group with 2 updates Updates the requirements on [pyproject-fmt](https://github.com/tox-dev/toml-fmt) and [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) to permit the latest version. Updates `pyproject-fmt` to 2.21.2 - [Release notes](https://github.com/tox-dev/toml-fmt/releases) - [Commits](https://github.com/tox-dev/toml-fmt/commits/pyproject-fmt/2.21.2) Updates `sphinx-rtd-theme` to 3.1.0 - [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst) - [Commits](readthedocs/sphinx_rtd_theme@2.0.0...3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: pyproject-fmt dependency-version: 2.21.2 dependency-type: direct:development dependency-group: dependencies - dependency-name: sphinx-rtd-theme dependency-version: 3.1.0 dependency-type: direct:development dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ebad9ec commit 99cbdc0

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
submodules: recursive
2525
persist-credentials: false
2626

2727
- name: Setup Python
2828
id: setup-python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

@@ -67,7 +67,7 @@ jobs:
6767
}
6868
6969
- name: Cache pip wheels
70-
uses: actions/cache@v4
70+
uses: actions/cache@v5
7171
with:
7272
path: |
7373
~/.cache/pip
@@ -91,7 +91,7 @@ jobs:
9191
run: poetry run coverage xml -o coverage.xml
9292

9393
- name: Upload coverage.xml
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v7
9595
with:
9696
name: coverage-${{ matrix.os }}-py${{ matrix.python-version }}
9797
path: coverage.xml
@@ -102,13 +102,13 @@ jobs:
102102

103103
steps:
104104
- name: Checkout
105-
uses: actions/checkout@v4
105+
uses: actions/checkout@v6
106106
with:
107107
submodules: recursive
108108
persist-credentials: false
109109

110110
- name: Setup Python
111-
uses: actions/setup-python@v5
111+
uses: actions/setup-python@v6
112112
with:
113113
python-version: "3.12"
114114

@@ -138,7 +138,7 @@ jobs:
138138

139139
steps:
140140
- name: Checkout
141-
uses: actions/checkout@v4
141+
uses: actions/checkout@v6
142142
with:
143143
submodules: recursive
144144
persist-credentials: false
@@ -147,7 +147,7 @@ jobs:
147147
uses: pypa/cibuildwheel@v3.4.1
148148

149149
- name: Upload wheels
150-
uses: actions/upload-artifact@v4
150+
uses: actions/upload-artifact@v7
151151
with:
152152
name: wheels-${{ matrix.os }}
153153
path: wheelhouse/*.whl

.github/workflows/docs_deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
name: github-pages
2222
url: ${{ steps.deployment.outputs.page_url }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
with:
2626
submodules: recursive
2727
persist-credentials: false
2828

29-
- uses: actions/setup-python@v5
29+
- uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.12"
3232
cache: "pip"
@@ -46,10 +46,10 @@ jobs:
4646
touch docs/build/html/.nojekyll
4747
4848
- name: Upload Pages artifact
49-
uses: actions/upload-pages-artifact@v3
49+
uses: actions/upload-pages-artifact@v5
5050
with:
5151
path: docs/build/html
5252

5353
- id: deployment
5454
name: Deploy to GitHub Pages
55-
uses: actions/deploy-pages@v4
55+
uses: actions/deploy-pages@v5

.github/workflows/docs_preview.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
build-preview:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
with:
1616
submodules: recursive
1717
persist-credentials: false
1818

19-
- uses: actions/setup-python@v5
19+
- uses: actions/setup-python@v6
2020
with:
2121
python-version: "3.12"
2222
cache: "pip"
@@ -36,7 +36,7 @@ jobs:
3636
touch docs/build/html/.nojekyll
3737
3838
- name: Upload docs preview artifact
39-
uses: actions/upload-artifact@v4
39+
uses: actions/upload-artifact@v7
4040
with:
4141
name: docs-html-preview
4242
path: docs/build/html

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ pytest-cov = ">=5"
8484
coverage = { version = ">=7.5", extras = [ "toml" ] }
8585
pre-commit = ">=3.6"
8686
codespell = ">=2.3"
87-
pyproject-fmt = "==2.3.1"
87+
pyproject-fmt = "==2.21.2"
8888
readme-renderer = ">=43,<44"
8989
twine = ">=6.2,<7"
9090
types-setuptools = "*"
@@ -95,7 +95,7 @@ types-cffi = ">=1.17.0.0"
9595
jupyter = "^1.1.1"
9696
matplotlib = "^3.10.6"
9797
sphinx = "^7.3"
98-
sphinx-rtd-theme = "^2.0"
98+
sphinx-rtd-theme = "^3.1"
9999
sphinxcontrib-napoleon = "^0.7"
100100
sphinx-autodoc-typehints = "^2.0"
101101
sphinx-copybutton = "^0.5"

0 commit comments

Comments
 (0)