Skip to content

Commit

Permalink
BF: pyproject.toml: Add setuptools to build-system requires
Browse files Browse the repository at this point in the history
According to the failure on Travis:

    WARNING: The project does not specify a build backend, and pip
    cannot fall back to setuptools without 'setuptools>=40.8.0'

https://travis-ci.org/github/datalad/datalad/jobs/715984720#L1021
  • Loading branch information
kyleam committed Aug 8, 2020
1 parent e041d86 commit b8d6423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
# wheel to get more lightweight (not EASY-INSTALL) entry-points
requires = ["wheel"]
requires = ["setuptools>=40.8.0", "wheel"]

0 comments on commit b8d6423

Please sign in to comment.