0001-Fix-flit_core-build-requires-backend.patch 905 B

1234567891011121314151617181920212223242526272829303132
  1. From 3d39ee9a03a1c96b8e798dc6acf98165da31da1f Mon Sep 17 00:00:00 2001
  2. From: James Hilliard <james.hilliard1@gmail.com>
  3. Date: Fri, 11 Mar 2022 12:59:53 -0700
  4. Subject: [PATCH] Fix flit_core build requires/backend.
  5. Only flit_core should be required by pyproject.toml, the regular flit
  6. package is the pep517 frontend which is not what should be set for the
  7. build system.
  8. Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
  9. [Upstream status:
  10. https://github.com/aio-libs/aiohttp-remotes/pull/355]
  11. ---
  12. pyproject.toml | 4 ++--
  13. 1 files changed, 2 insertions(+), 2 deletions(-)
  14. diff --git a/pyproject.toml b/pyproject.toml
  15. index 214d64d..8c6b882 100644
  16. --- a/pyproject.toml
  17. +++ b/pyproject.toml
  18. @@ -1,6 +1,6 @@
  19. [build-system]
  20. -requires=["flit"]
  21. -build-backend="flit.buildapi"
  22. +requires=["flit_core"]
  23. +build-backend="flit_core.buildapi"
  24. [tool.flit.metadata]
  25. module="aiohttp_remotes"
  26. --
  27. 2.38.1