Skip to content

Commit 6308e0d

Browse files
authored
Merge pull request #102 from tiran/gh-101-setuptools
Add runtime dependency on setuptools
2 parents 08e7b6f + 7ee3e9c commit 6308e0d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4.3"]
2+
requires = ["setuptools>=46.1", "wheel", "setuptools_scm[toml]>=3.4.3"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.setuptools_scm]

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)