diff --git a/CHANGELOG.md b/CHANGELOG.md index ad4ce656..f72b977d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Unreleased - Respect `PYO3_PYTHON` and `PYTHON_SYS_EXECUTABLE` environment variables if set. [#96](https://github.com/PyO3/setuptools-rust/pull/96) +- Add runtime dependency on setuptools >= 46.1. [#102](https://github.com/PyO3/setuptools-rust/pull/102) ## 0.11.6 (2020-12-13) diff --git a/pyproject.toml b/pyproject.toml index eaf552d8..6b3968db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4.3"] +requires = ["setuptools>=46.1", "wheel", "setuptools_scm[toml]>=3.4.3"] build-backend = "setuptools.build_meta" [tool.setuptools_scm] diff --git a/setup.cfg b/setup.cfg index c8a8fcd8..b44b9a54 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,7 +27,7 @@ classifiers = [options] packages = setuptools_rust zip_safe = True -install_requires = semantic_version>=2.6.0; toml>=0.9.0 +install_requires = setuptools>=46.1; semantic_version>=2.6.0; toml>=0.9.0 setup_requires = setuptools>=46.1; wheel; setuptools_scm[toml]>=3.4.3 [options.entry_points]