Skip to content

Commit a47be77

Browse files
QuLogicmeeseeksmachine
authored andcommitted
Backport PR matplotlib#28036: BLD: Fetch version from setuptools_scm at build time
1 parent 03c94a2 commit a47be77

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

+1-1
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

+1-1
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

+1-1
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)