Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5de06ef

Browse filesBrowse files
authored
Merge pull request #28049 from meeseeksmachine/auto-backport-of-pr-28036-on-v3.9.x
Backport PR #28036 on branch v3.9.x (BLD: Fetch version from setuptools_scm at build time)
2 parents 03c94a2 + a47be77 commit 5de06ef
Copy full SHA for 5de06ef

File tree

3 files changed

+3
-3
lines changed
Filter options

3 files changed

+3
-3
lines changed

‎.circleci/config.yml

Copy file name to clipboardExpand all lines: .circleci/config.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ commands:
103103
- run:
104104
name: Install Python dependencies
105105
command: |
106-
python -m pip install --user meson-python pybind11
106+
python -m pip install --user meson-python numpy pybind11 setuptools-scm
107107
python -m pip install --user \
108108
numpy<< parameters.numpy_version >> \
109109
-r requirements/doc/doc-requirements.txt

‎azure-pipelines.yml

Copy file name to clipboardExpand all lines: azure-pipelines.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ stages:
135135
136136
- bash: |
137137
python -m pip install --upgrade pip
138-
python -m pip install --upgrade meson-python pybind11
138+
python -m pip install --upgrade meson-python numpy pybind11 setuptools-scm
139139
python -m pip install -r requirements/testing/all.txt -r requirements/testing/extra.txt
140140
displayName: 'Install dependencies with pip'
141141

‎meson.build

Copy file name to clipboardExpand all lines: meson.build
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'matplotlib',
33
'c', 'cpp',
4-
version: '3.9.0.dev0',
4+
version: run_command(find_program('python3'), '-m', 'setuptools_scm', check: true).stdout().strip(),
55
# qt_editor backend is MIT
66
# ResizeObserver at end of lib/matplotlib/backends/web_backend/js/mpl.js is CC0
77
# Carlogo, STIX and Computer Modern is OFL

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.