# HG changeset patch # User Franz Glasner # Date 1698333252 -7200 # Node ID 06b6c14bcd611b6a5c3cccd5a03eb33e3713b10b # Parent 88bfa76463a66e0585d8c9b4cd1f6def28b60fcb FIX: Pure-Python installation from source for older Python versions: we need not the latest and greatest of setuptools and wheel. diff -r 88bfa76463a6 -r 06b6c14bcd61 pyproject.toml --- 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"