Skip to content

Commit 1d7ee9f

Browse files
Don't require optional wheel dependency. (#111)
Signed-off-by: James Hilliard <[email protected]>
1 parent 131c9c1 commit 1d7ee9f

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
@@ -6,6 +6,7 @@
66
- Add runtime dependency on setuptools >= 46.1. [#102](https://github.com/PyO3/setuptools-rust/pull/102)
77
- Append to, rather than replace, existing RUSTFLAGS when building. [#103](https://github.com/PyO3/setuptools-rust/pull/103)
88
- Set executable bit on shared library. [#110](https://github.com/PyO3/setuptools-rust/pull/110)
9+
- Don't require optional wheel dependency. [#111](https://github.com/PyO3/setuptools-rust/pull/111)
910

1011
## 0.11.6 (2020-12-13)
1112

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>=46.1", "wheel", "setuptools_scm[toml]>=3.4.3"]
2+
requires = ["setuptools>=46.1", "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
@@ -28,7 +28,7 @@ classifiers =
2828
packages = setuptools_rust
2929
zip_safe = True
3030
install_requires = setuptools>=46.1; semantic_version>=2.6.0; toml>=0.9.0
31-
setup_requires = setuptools>=46.1; wheel; setuptools_scm[toml]>=3.4.3
31+
setup_requires = setuptools>=46.1; setuptools_scm[toml]>=3.4.3
3232

3333
[options.entry_points]
3434
distutils.commands =

0 commit comments

Comments
 (0)