Skip to content

Commit

Permalink
Add runtime dependency on setuptools
Browse files Browse the repository at this point in the history
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 <christian@python.org>
  • Loading branch information
tiran committed Jan 14, 2021
1 parent 08e7b6f commit f20d6e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit f20d6e6

Please sign in to comment.