diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-15 06:13:10 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-15 06:13:10 -0400 |
commit | 619e229c9777f0ee0851d8c5c94caaad7d89d434 (patch) | |
tree | 2013eec1df4def402792a3b932d904b714b7e493 /pyproject.toml | |
parent | b0657c80db7891a9eca038199d5d4c2e2bafed03 (diff) | |
parent | e04c75ab906caadff4609ef34de8973c8e92eff8 (diff) | |
download | external_python_setuptools-619e229c9777f0ee0851d8c5c94caaad7d89d434.tar.gz external_python_setuptools-619e229c9777f0ee0851d8c5c94caaad7d89d434.tar.bz2 external_python_setuptools-619e229c9777f0ee0851d8c5c94caaad7d89d434.zip |
Merge branch 'master' into docs/setup.cfg-only
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index f0fd8521..cfdc2574 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,9 @@ [build-system] -requires = ["setuptools >= 40.8", "wheel"] +requires = [ + # avoid self install on Python 2; ref #1996 + "setuptools >= 40.8; python_version > '3'", + "wheel", +] build-backend = "setuptools.build_meta" backend-path = ["."] |