Backport PR #26849 on branch v3.8.x (Bump setuptools required version because of setuptools_scm v8) by meeseeksmachine · Pull Request #26860 · matplotlib/matplotlib · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions doc/api/next_api_changes/development/26849-KS.rst
2 changes: 1 addition & 1 deletion doc/devel/dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ Setup dependencies
runtime dependency.
- `PyBind11 <https://pypi.org/project/pybind11/>`_ (>= 2.6). Used to connect C/C++ code
with Python.
- `setuptools <https://pypi.org/project/setuptools/>`_ (>= 42).
- `setuptools <https://pypi.org/project/setuptools/>`_ (>= 64).
- `setuptools_scm <https://pypi.org/project/setuptools-scm/>`_ (>= 7). Used to
update the reported ``mpl.__version__`` based on the current git commit.
Also a runtime dependency for editable installs.
Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,17 @@ requires = [
"certifi>=2020.06.20",
"numpy>=1.25",
"pybind11>=2.6",
"setuptools>=42",
"setuptools>=64",
"setuptools_scm>=7",
]

[tool.setuptools_scm]
version_scheme = "release-branch-semver"
local_scheme = "node-and-date"
write_to = "lib/matplotlib/_version.py"
parentdir_prefix_version = "matplotlib-"
fallback_version = "0.0+UNKNOWN"

[tool.isort]
known_pydata = "numpy, matplotlib.pyplot"
known_firstparty = "matplotlib,mpl_toolkits"
Expand Down
1 change: 1 addition & 0 deletions requirements/testing/mypy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ pillow>=8
pyparsing>=2.3.1
python-dateutil>=2.7
setuptools_scm>=7
setuptools>=64

importlib-resources>=3.2.0 ; python_version < "3.10"
5 changes: 4 additions & 1 deletion setup.py