Skip to content

Commit 3de789a

Browse files
Update pydata/pydata-sphinx-theme requirement to 469e908 (#2272)
Updates the requirements on pydata/pydata-sphinx-theme to permit the latest version.
1 parent c04a3b7 commit 3de789a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: "Setup CI environment 🛠"
7676
# Important: make sure to update the SHA after making any changes to the set-dev-env action
77-
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@4a1e7898d6c92dade5e489684277ab4ffd0eb053
77+
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@469e90895696e21b765121e952d84ea82c71410c
7878
with:
7979
python-version: ${{ matrix.python-version }}
8080
pandoc: true
@@ -125,7 +125,7 @@ jobs:
125125
persist-credentials: false
126126

127127
- name: "Setup CI environment 🛠"
128-
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@4a1e7898d6c92dade5e489684277ab4ffd0eb053
128+
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@469e90895696e21b765121e952d84ea82c71410c
129129
with:
130130
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
131131

@@ -181,7 +181,7 @@ jobs:
181181
persist-credentials: false
182182

183183
- name: "Setup CI environment 🛠"
184-
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@4a1e7898d6c92dade5e489684277ab4ffd0eb053
184+
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@469e90895696e21b765121e952d84ea82c71410c
185185
with:
186186
# 3.12 is not supported by py-spy yet
187187
python-version: "3.11"

.github/workflows/a11y.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
persist-credentials: false
4949

5050
- name: "Setup CI environment 🛠"
51-
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@4a1e7898d6c92dade5e489684277ab4ffd0eb053
51+
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@469e90895696e21b765121e952d84ea82c71410c
5252
with:
5353
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
5454
pandoc: true

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: "Setup CI environment 🛠"
6363
# Important: make sure to update the SHA after making any changes to the set-dev-env action
64-
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@4a1e7898d6c92dade5e489684277ab4ffd0eb053
64+
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@469e90895696e21b765121e952d84ea82c71410c
6565
with:
6666
python-version: ${{ matrix.python-version }}
6767
pandoc: true
@@ -92,7 +92,7 @@ jobs:
9292

9393
- name: "Setup CI environment 🛠"
9494
# Important: make sure to update the SHA after making any changes to the set-dev-env action
95-
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@4a1e7898d6c92dade5e489684277ab4ffd0eb053
95+
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@469e90895696e21b765121e952d84ea82c71410c
9696
with:
9797
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
9898

@@ -129,7 +129,7 @@ jobs:
129129

130130
- name: "Setup CI environment 🛠"
131131
# Important: make sure to update the SHA after making any changes to the set-dev-env action
132-
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@4a1e7898d6c92dade5e489684277ab4ffd0eb053
132+
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@469e90895696e21b765121e952d84ea82c71410c
133133

134134
- name: "Check for broken links 🔗"
135135
run: python -Im tox run -e docs-linkcheck

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: "Setup CI environment 🛠"
3333
# Important: make sure to update the SHA after making any changes to the set-dev-env action
34-
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@4a1e7898d6c92dade5e489684277ab4ffd0eb053
34+
uses: pydata/pydata-sphinx-theme/.github/actions/set-dev-env@469e90895696e21b765121e952d84ea82c71410c
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
pandoc: true

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# calls our general CI workflows (tests, coverage, profile, etc.)
2020
tests:
2121
# Important: make sure to update the SHA after making any changes to the CI workflow
22-
uses: pydata/pydata-sphinx-theme/.github/workflows/CI.yml@ac57147185b6f9400cafbcd852e04345e5e841b7
22+
uses: pydata/pydata-sphinx-theme/.github/workflows/CI.yml@469e90895696e21b765121e952d84ea82c71410c
2323
# only run this workflow for pydata owned repositories (avoid forks)
2424
if: github.repository_owner == 'pydata'
2525
# needed for the coverage action
@@ -30,7 +30,7 @@ jobs:
3030
# calls our docs workflow (build docs, check broken links, lighthouse)
3131
docs:
3232
# Important: make sure to update the SHA after making any changes to the docs workflow
33-
uses: pydata/pydata-sphinx-theme/.github/workflows/docs.yml@3e74810e3ad3778c179f3f836409540e0a3bf0f1
33+
uses: pydata/pydata-sphinx-theme/.github/workflows/docs.yml@469e90895696e21b765121e952d84ea82c71410c
3434
# only run this workflow for pydata owned repositories (avoid forks)
3535
if: github.repository_owner == 'pydata'
3636

0 commit comments

Comments
 (0)