0001-Bump-setuptools-dependency-from-74-to-89.patch 949 B

123456789101112131415161718192021222324252627
  1. From bc9b975c9f41e43481a2eb0623b4180926baecec Mon Sep 17 00:00:00 2001
  2. From: Khem Raj <raj.khem@gmail.com>
  3. Date: Wed, 9 Apr 2025 14:38:31 -0700
  4. Subject: [PATCH] Bump setuptools dependency from 74 to 89
  5. Upstream sticks to 0.74 since setuptools have dropped msvc9compiler
  6. support beyond that which is needed for python 3.9 on windows. We
  7. do not have this problem on Linux
  8. Upstream-Status: Inappropriate [OE-specific]
  9. Signed-off-by: Khem Raj <raj.khem@gmail.com>
  10. ---
  11. pyproject.toml | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. diff --git a/pyproject.toml b/pyproject.toml
  14. index dd885e4..5d4d511 100644
  15. --- a/pyproject.toml
  16. +++ b/pyproject.toml
  17. @@ -1,6 +1,6 @@
  18. [build-system]
  19. # setuptools 64+ support --build-option
  20. # setuptools 74+ drops distutils.msvc9compiler required for Python 3.9 under Windows
  21. -requires = ["setuptools>=64,<74"]
  22. +requires = ["setuptools>=64,<89"]
  23. backend-path = ["build_script"]
  24. build-backend = "pyzstd_pep517"