-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Un-vendor the
fastentrypoints
dependency.
The `fastentrypoints` dependency is used to make console scripts faster, in the case where they are **not** installed as wheels. If they are installed as wheels, the console scripts are faster by default. By specifying `fastentrypoints` as a build requirement in `pyproject.toml`, we can ensure that it can be imported whenever the package is installed through `pip`. This incurs a slight overhead of having to install `fastentrypoints` even when the package is installed as a wheel, but we no longer have to vendor `fastentrypoints`.
- Loading branch information
Dominik Gresch
committed
Jun 29, 2020
1 parent
43104e3
commit 6f08bc9
Showing
5 changed files
with
9 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[build-system] | ||
requires = [ "setuptools>=40.8.0", "wheel", "reentry~=1.3",] | ||
requires = [ "setuptools>=40.8.0", "wheel", "reentry~=1.3", "fastentrypoints~=0.12",] | ||
build-backend = "setuptools.build_meta:__legacy__" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.