-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷 Divide pip constraints into distinct pairs
The in+txt key pairs can be managed by pip-tools and upgraded by Dependabot natively.
- Loading branch information
Showing
28 changed files
with
875 additions
and
145 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 was deleted.
Oops, something went wrong.
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,4 @@ | ||
[pip-tools] | ||
allow-unsafe = true | ||
resolver = "backtracking" | ||
strip-extras = true |
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,5 @@ | ||
-r typing-extensions.in | ||
-r runtime-deps.in | ||
|
||
gunicorn | ||
uvloop; platform_system != "Windows" and implementation_name == "cpython" and python_version < "3.9" # MagicStack/uvloop#14 |
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,13 +1,42 @@ | ||
-r multidict.txt | ||
-r typing-extensions.txt | ||
# required c-ares will not build on windows | ||
aiodns==3.0.0; sys_platform=="linux" or sys_platform=="darwin" | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.9 | ||
# by the following command: | ||
# | ||
# pip-compile --allow-unsafe --output-file=requirements/base.txt --strip-extras requirements/base.in | ||
# | ||
aiodns==3.0.0 ; sys_platform == "linux" or sys_platform == "darwin" | ||
# via -r requirements/runtime-deps.in | ||
aiosignal==1.3.1 | ||
# via -r requirements/runtime-deps.in | ||
async-timeout==4.0.2 | ||
Brotli==1.0.9 | ||
cchardet==2.1.7; python_version < "3.10" # Unmaintained: aio-libs/aiohttp#6819 | ||
# via -r requirements/runtime-deps.in | ||
brotli==1.0.9 | ||
# via -r requirements/runtime-deps.in | ||
cchardet==2.1.7 ; python_version < "3.10" | ||
# via -r requirements/runtime-deps.in | ||
cffi==1.15.1 | ||
# via pycares | ||
charset-normalizer==3.2.0 | ||
# via -r requirements/runtime-deps.in | ||
frozenlist==1.4.0 | ||
# via | ||
# -r requirements/runtime-deps.in | ||
# aiosignal | ||
gunicorn==21.2.0 | ||
uvloop==0.17.0; platform_system!="Windows" and implementation_name=="cpython" and python_version<"3.9" # MagicStack/uvloop#14 | ||
# via -r requirements/base.in | ||
idna==3.4 | ||
# via yarl | ||
multidict==6.0.4 | ||
# via | ||
# -r requirements/runtime-deps.in | ||
# yarl | ||
packaging==23.1 | ||
# via gunicorn | ||
pycares==4.3.0 | ||
# via aiodns | ||
pycparser==2.21 | ||
# via cffi | ||
typing-extensions==4.1.1 | ||
# via -r requirements/typing-extensions.in | ||
yarl==1.9.2 | ||
# via -r requirements/runtime-deps.in |
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,4 +1,4 @@ | ||
-r cython.txt | ||
-r dev.txt | ||
-r doc-spelling.txt | ||
-r lint.txt | ||
-r cython.in | ||
-r dev.in | ||
-r doc-spelling.in | ||
-r lint.in |
Oops, something went wrong.