changeset 733:06b6c14bcd61

FIX: Pure-Python installation from source for older Python versions: we need not the latest and greatest of setuptools and wheel.
author Franz Glasner <f.glasner@feldmann-mg.com>
date Thu, 26 Oct 2023 17:14:12 +0200
parents 88bfa76463a6
children 50dea7892b62
files pyproject.toml
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pyproject.toml	Fri Aug 18 11:50:39 2023 +0200
+++ b/pyproject.toml	Thu Oct 26 17:14:12 2023 +0200
@@ -1,3 +1,4 @@
+# Pure-Python-Build
 [build-system]
-requires = ["setuptools>=67.0", "wheel>=0.38"]
+requires = ["setuptools>=43.0", "wheel>=0.33"]
 build-backend = "setuptools.build_meta"