-
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change adds pinned constraints to the PEP 517 based distribution package build process by adding a pip-tools managed lock file. It is also auto-updatable by GitHub Dependabot.
- Loading branch information
Showing
4 changed files
with
48 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# NOTE: Keep this in sync with `pyproject.toml -> [build-system] -> requires` | ||
# NOTE: at all times. | ||
|
||
# Essentials | ||
setuptools >= 34.4 | ||
|
||
# Plugins | ||
setuptools_scm[toml] >= 3.5 | ||
setuptools_scm_git_archive >= 1.1 | ||
|
||
# Dynamic (coming from setuptools' PEP 517 build backend) | ||
wheel |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# | ||
# This file is autogenerated by pip-compile with python 3.10 | ||
# To update, run: | ||
# | ||
# pip-compile --allow-unsafe --output-file=requirements/dist-build-constraints.txt --strip-extras requirements/dist-build-constraints.in | ||
# | ||
packaging==21.3 | ||
# via setuptools-scm | ||
pyparsing==3.0.6 | ||
# via packaging | ||
setuptools-scm==6.3.2 | ||
# via -r requirements/dist-build-constraints.in | ||
setuptools-scm-git-archive==1.1 | ||
# via -r requirements/dist-build-constraints.in | ||
tomli==1.2.2 | ||
# via setuptools-scm | ||
wheel==0.37.0 | ||
# via -r requirements/dist-build-constraints.in | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
setuptools==59.5.0 | ||
# via | ||
# -r requirements/dist-build-constraints.in | ||
# setuptools-scm |
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
5c1ac08
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ref: pypa/build#292 (comment).