Skip to content

Commit

Permalink
Merge pull request #102 from tiran/gh-101-setuptools
Browse files Browse the repository at this point in the history
Add runtime dependency on setuptools
  • Loading branch information
davidhewitt authored Jan 14, 2021
2 parents 08e7b6f + 7ee3e9c commit 6308e0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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 pyproject.toml
Original file line number Diff line number Diff line change
@@ -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]
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 6308e0d

Please sign in to comment.