Skip to content

Commit f20d6e6

Browse files
committed
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: #101 Signed-off-by: Christian Heimes <[email protected]>
1 parent 08e7b6f commit f20d6e6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44

55
- Respect `PYO3_PYTHON` and `PYTHON_SYS_EXECUTABLE` environment variables if set. [#96](https://github.com/PyO3/setuptools-rust/pull/96)
6+
- Add runtime dependency on setuptools >= 46.1. [#102](https://github.com/PyO3/setuptools-rust/pull/102)
67

78
## 0.11.6 (2020-12-13)
89

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers =
2727
[options]
2828
packages = setuptools_rust
2929
zip_safe = True
30-
install_requires = semantic_version>=2.6.0; toml>=0.9.0
30+
install_requires = setuptools>=46.1; semantic_version>=2.6.0; toml>=0.9.0
3131
setup_requires = setuptools>=46.1; wheel; setuptools_scm[toml]>=3.4.3
3232

3333
[options.entry_points]

0 commit comments

Comments
 (0)