0001-Don-t-require-optional-wheel-dependency.patch 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. From 4de1da1189d8f6d45b71bf036fbba1101ea5ec47 Mon Sep 17 00:00:00 2001
  2. From: James Hilliard <james.hilliard1@gmail.com>
  3. Date: Wed, 10 Feb 2021 20:54:37 -0700
  4. Subject: [PATCH] Don't require optional wheel dependency.
  5. Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
  6. [Upstream status:
  7. https://github.com/PyO3/setuptools-rust/pull/111]
  8. ---
  9. pyproject.toml | 2 +-
  10. setup.cfg | 2 +-
  11. 2 files changed, 2 insertions(+), 2 deletions(-)
  12. diff --git a/pyproject.toml b/pyproject.toml
  13. index eaf552d..6abb82f 100644
  14. --- a/pyproject.toml
  15. +++ b/pyproject.toml
  16. @@ -1,5 +1,5 @@
  17. [build-system]
  18. -requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4.3"]
  19. +requires = ["setuptools>=42", "setuptools_scm[toml]>=3.4.3"]
  20. build-backend = "setuptools.build_meta"
  21. [tool.setuptools_scm]
  22. diff --git a/setup.cfg b/setup.cfg
  23. index c8a8fcd..d92bcde 100644
  24. --- a/setup.cfg
  25. +++ b/setup.cfg
  26. @@ -28,7 +28,7 @@ classifiers =
  27. packages = setuptools_rust
  28. zip_safe = True
  29. install_requires = semantic_version>=2.6.0; toml>=0.9.0
  30. -setup_requires = setuptools>=46.1; wheel; setuptools_scm[toml]>=3.4.3
  31. +setup_requires = setuptools>=46.1; setuptools_scm[toml]>=3.4.3
  32. [options.entry_points]
  33. distutils.commands =
  34. --
  35. 2.30.0