From f20d6e68f713269184bf3b4f40ab2d08ef0a23bc Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Thu, 14 Jan 2021 18:36:18 +0100 Subject: [PATCH] Add runtime dependency on setuptools setuptools_rust has a runtime dependency on setuptools. Ensure that all installations of setuptools_rust have a sufficiently recent version of setuptools. Fixes: https://github.com/PyO3/setuptools-rust/issues/101 Signed-off-by: Christian Heimes --- CHANGELOG.md | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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/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]