Skip to content

Commit 707f384

Browse files
committed
Merge branch 'main' into text-overhaul
2 parents a0fb5cf + 73ef257 commit 707f384

File tree

14 files changed

+25
-69
lines changed

14 files changed

+25
-69
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
run: Remove-Item -Recurse C:\Strawberry
148148

149149
- name: Build wheels for CPython 3.14
150-
uses: pypa/cibuildwheel@c923d83ad9c1bc00211c5041d0c3f73294ff88f6 # v3.1.4
150+
uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.2.1
151151
with:
152152
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
153153
env:
@@ -157,7 +157,7 @@ jobs:
157157
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
158158

159159
- name: Build wheels for CPython 3.13
160-
uses: pypa/cibuildwheel@c923d83ad9c1bc00211c5041d0c3f73294ff88f6 # v3.1.4
160+
uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.2.1
161161
with:
162162
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
163163
env:
@@ -166,23 +166,23 @@ jobs:
166166
CIBW_ARCHS: ${{ matrix.cibw_archs }}
167167

168168
- name: Build wheels for CPython 3.12
169-
uses: pypa/cibuildwheel@c923d83ad9c1bc00211c5041d0c3f73294ff88f6 # v3.1.4
169+
uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.2.1
170170
with:
171171
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
172172
env:
173173
CIBW_BUILD: "cp312-*"
174174
CIBW_ARCHS: ${{ matrix.cibw_archs }}
175175

176176
- name: Build wheels for CPython 3.11
177-
uses: pypa/cibuildwheel@c923d83ad9c1bc00211c5041d0c3f73294ff88f6 # v3.1.4
177+
uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.2.1
178178
with:
179179
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
180180
env:
181181
CIBW_BUILD: "cp311-*"
182182
CIBW_ARCHS: ${{ matrix.cibw_archs }}
183183

184184
- name: Build wheels for PyPy
185-
uses: pypa/cibuildwheel@c923d83ad9c1bc00211c5041d0c3f73294ff88f6 # v3.1.4
185+
uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.2.1
186186
with:
187187
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }}
188188
env:

.github/workflows/circleci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: GitHub Action step
1313
uses:
14-
scientific-python/circleci-artifacts-redirector-action@839631420e45a08af893032e5a5e8843bf47e8ff # v1.2.0
14+
scientific-python/circleci-artifacts-redirector-action@5d358ff96e96429a5c64a969bb4a574555439f4f # v1.3.1
1515
with:
1616
repo-token: ${{ secrets.GITHUB_TOKEN }}
1717
api-token: ${{ secrets.CIRCLECI_TOKEN }}

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
persist-credentials: false
3333

3434
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
35+
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
3636
with:
3737
languages: ${{ matrix.language }}
3838

@@ -43,4 +43,4 @@ jobs:
4343
pip install --user -v .
4444
4545
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
46+
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4.30.9

.github/workflows/cygwin.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,21 +140,21 @@ jobs:
140140
# FreeType build fails with bash, succeeds with dash
141141

142142
- name: Cache pip
143-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
143+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
144144
with:
145145
path: C:\cygwin\home\runneradmin\.cache\pip
146146
key: Cygwin-py3.${{ matrix.python-minor-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
147147
restore-keys: ${{ matrix.os }}-py3.${{ matrix.python-minor-version }}-pip-
148148

149149
- name: Cache ccache
150-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
150+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
151151
with:
152152
path: C:\cygwin\home\runneradmin\.ccache
153153
key: Cygwin-py3.${{ matrix.python-minor-version }}-ccache-${{ hashFiles('src/*') }}
154154
restore-keys: Cygwin-py3.${{ matrix.python-minor-version }}-ccache-
155155

156156
- name: Cache Matplotlib
157-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
157+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
158158
with:
159159
path: |
160160
C:\cygwin\home\runneradmin\.cache\matplotlib

.github/workflows/good-first-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
issues: write
1313
steps:
1414
- name: Add comment
15-
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
15+
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0
1616
with:
1717
issue-number: ${{ github.event.issue.number }}
1818
body: |

.github/workflows/stale-tidy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: github.repository == 'matplotlib/matplotlib'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
12+
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
1313
with:
1414
repo-token: ${{ secrets.GITHUB_TOKEN }}
1515
operations-per-run: 300

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: github.repository == 'matplotlib/matplotlib'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
12+
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
1313
with:
1414
repo-token: ${{ secrets.GITHUB_TOKEN }}
1515
operations-per-run: 20

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,31 +197,31 @@ jobs:
197197
esac
198198
199199
- name: Cache pip
200-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
200+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
201201
if: startsWith(runner.os, 'Linux')
202202
with:
203203
path: ~/.cache/pip
204204
key: ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
205205
restore-keys: |
206206
${{ matrix.os }}-py${{ matrix.python-version }}-pip-
207207
- name: Cache pip
208-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
208+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
209209
if: startsWith(runner.os, 'macOS')
210210
with:
211211
path: ~/Library/Caches/pip
212212
key: ${{ matrix.os }}-py${{ matrix.python-version }}-pip-${{ hashFiles('requirements/*/*.txt') }}
213213
restore-keys: |
214214
${{ matrix.os }}-py${{ matrix.python-version }}-pip-
215215
- name: Cache ccache
216-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
216+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
217217
with:
218218
path: |
219219
~/.ccache
220220
key: ${{ matrix.os }}-py${{ matrix.python-version }}-ccache-${{ hashFiles('src/*') }}
221221
restore-keys: |
222222
${{ matrix.os }}-py${{ matrix.python-version }}-ccache-
223223
- name: Cache Matplotlib
224-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
224+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
225225
with:
226226
path: |
227227
~/.cache/matplotlib

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
[![Codecov status](https://codecov.io/github/matplotlib/matplotlib/badge.svg?branch=main&service=github)](https://app.codecov.io/gh/matplotlib/matplotlib)
1616
[![EffVer Versioning](https://img.shields.io/badge/version_scheme-EffVer-0097a7)](https://jacobtomlinson.dev/effver)
1717

18-
![Matplotlib logotype](https://matplotlib.org/_static/logo2.svg)
18+
![Matplotlib logotype](https://matplotlib.org/stable/_static/logo2.svg)
1919

2020
Matplotlib is a comprehensive library for creating static, animated, and
2121
interactive visualizations in Python.
2222

2323
Check out our [home page](https://matplotlib.org/) for more information.
2424

25-
![image](https://matplotlib.org/_static/readme_preview.png)
25+
![image](https://matplotlib.org/stable/_static/readme_preview.png)
2626

2727
Matplotlib produces publication-quality figures in a variety of hardcopy
2828
formats and interactive environments across platforms. Matplotlib can be

doc/install/dependencies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Build dependencies
220220
Python
221221
------
222222

223-
``pip`` normally builds packages using :external+pip:doc:`build isolation <reference/build-system/pyproject-toml>`,
223+
``pip`` normally builds packages using :external+pip:doc:`build isolation <reference/build-system>`,
224224
which means that ``pip`` installs the dependencies listed here for the
225225
duration of the build process. However, build isolation is disabled via the the
226226
:external+pip:ref:`--no-build-isolation <install_--no-build-isolation>` flag

0 commit comments

Comments
 (0)