Skip to content

Commit 8fd8050

Browse files
authored
Merge branch 'main' into macos14_runner
2 parents cedac45 + b9d2b91 commit 8fd8050

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/check-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
3636
- name: Cache pip
37-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
37+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3838
with:
3939
path: ${{ steps.pip-cache.outputs.dir }}
4040
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }}
@@ -43,7 +43,7 @@ jobs:
4343
${{ runner.os }}-pip-
4444
- name: Cache checked links
4545
if: ${{ matrix.group == 'link_check' }}
46-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
46+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4747
with:
4848
path: ~/.cache/pytest-link-check
4949
key: ${{ runner.os }}-linkcheck-${{ hashFiles('**/*.md', '**/*.rst') }}-md-links

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
echo "dir=$(pip cache dir)" >> "$GITHUB_OUTPUT"
3737
- name: Cache pip
38-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
38+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3939
with:
4040
path: ${{ steps.pip-cache.outputs.dir }}
4141
key: ${{ runner.os }}-pip-${{ env.python-version }}-${{ hashFiles('pyproject.toml') }}

.github/workflows/js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
4646

4747
- name: Cache yarn
48-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
48+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4949
id: yarn-cache
5050
with:
5151
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -54,7 +54,7 @@ jobs:
5454
${{ runner.os }}-yarn-
5555
5656
- name: Cache pip on Linux
57-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
57+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5858
if: startsWith(runner.os, 'Linux')
5959
with:
6060
path: ~/.cache/pip
@@ -63,7 +63,7 @@ jobs:
6363
${{ runner.os }}-pip-${{ env.python-version }}
6464
6565
- name: Cache pip on macOS
66-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
66+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6767
if: startsWith(runner.os, 'macOS')
6868
with:
6969
path: ~/Library/Caches/pip

docs/source/examples/Notebook/Distributing Jupyter Extensions as Python Packages.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"\n",
135135
"> Of course, in addition to the files listed, there are number of other files one needs to build a proper package. Here are some good resources:\n",
136136
"- [The Hitchhiker's Guide to Packaging](https://the-hitchhikers-guide-to-packaging.readthedocs.io/en/latest/quickstart.html)\n",
137-
"- [Repository Structure and Python](https://kennethreitz.org/essays/2013/repository_structure_and_python) by Kenneth Reitz\n",
137+
"- [Repository Structure and Python](https://kennethreitz.org/essays/2013-01-repository_structure_and_python) by Kenneth Reitz\n",
138138
"\n",
139139
"> How you distribute them, too, is important:\n",
140140
"- [Packaging and Distributing Projects](https://python-packaging-user-guide.readthedocs.io/tutorials/distributing-packages/)\n",

0 commit comments

Comments
 (0)