Skip to content

Commit

Permalink
Merge pull request #1997 from pypa/bugfix/1996-py27-tests
Browse files Browse the repository at this point in the history
Avoid installing setuptools 45 on Python 2.
  • Loading branch information
jaraco committed Feb 15, 2020
2 parents 874b7ef + 9732946 commit c0154f4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = ["."]

Expand Down

0 comments on commit c0154f4

Please sign in to comment.