Commit c0154f47 authored by Jason R. Coombs's avatar Jason R. Coombs Committed by GitHub

Merge pull request #1997 from pypa/bugfix/1996-py27-tests

Avoid installing setuptools 45 on Python 2.
parents 874b7ef0 9732946b
[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 = ["."]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment