-
-
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.
- Loading branch information
Showing
30 changed files
with
1,103 additions
and
322 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
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
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" # 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,21 +1,48 @@ | ||
-r multidict.txt | ||
-r typing-extensions.txt | ||
# required c-ares will not build on windows and has build problems on Macos Python<3.7 | ||
aiodns==3.0.0; sys_platform=="linux" or sys_platform=="darwin" and python_version>="3.7" | ||
aiosignal==1.2.0 | ||
async-generator==1.10 | ||
async-timeout==4.0.1 | ||
asynctest==0.13.0; python_version<"3.8" | ||
attrs==21.2.0 | ||
Brotli==1.0.9 | ||
cchardet==2.1.7; python_version < "3.10" # Unmaintained: aio-libs/aiohttp#6819 | ||
charset-normalizer==2.0.12 | ||
frozenlist==1.3.1; python_version >= "3.7" | ||
frozenlist==1.2.0; python_version < "3.7" # The last release supporting Python 3.6 | ||
gunicorn==20.1.0 | ||
idna-ssl==1.1.0; python_version<"3.7" | ||
typing==3.7.4.3; python_version<"3.7" | ||
uvloop==0.14.0; platform_system!="Windows" and implementation_name=="cpython" and python_version<"3.9" # MagicStack/uvloop#14 | ||
yarl==1.8.1; python_version >= "3.7" | ||
yarl==1.7.2; python_version < "3.7" # The last release supporting Python 3.6 | ||
zipp==3.4.1; python_version<"3.7" | ||
# | ||
# This file is autogenerated by pip-compile with python 3.8 | ||
# To update, run: | ||
# | ||
# pip-compile --allow-unsafe --output-file=requirements/base.txt --resolver=backtracking --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 | ||
# via -r requirements/runtime-deps.in | ||
attrs==22.2.0 | ||
# 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 | ||
# 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 | ||
# -c requirements/broken-projects.in | ||
# -r requirements/typing-extensions.in | ||
uvloop==0.17.0 ; platform_system != "Windows" and implementation_name == "cpython" | ||
# via -r requirements/base.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
attrs < 23 # Python 3.6 compat | ||
funcparserlib == 1.0.0a0 # https://github.com/blockdiag/blockdiag/pull/148 | ||
Jinja2 < 3.1 # https://github.com/readthedocs/readthedocs.org/issues/9038 | ||
Pillow < 10 # https://github.com/blockdiag/sphinxcontrib-blockdiag/issues/26 | ||
pydantic < 2 # looks like `python-on-whales` hasn't upgraded to support v2 | ||
Sphinx < 5.3 # compat with `sphinxcontrib-asyncio` | ||
typing-extensions <= 4.1.1 # last version supporting Python 3.6 |
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.