Skip to content

Commit

Permalink
Update lockfiles for new uv version
Browse files Browse the repository at this point in the history
  • Loading branch information
A5rocks authored Aug 21, 2024
1 parent 3c164f6 commit 4d18556
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions docs-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ beautifulsoup4==4.12.3
# via sphinx-codeautolink
certifi==2024.7.4
# via requests
cffi==1.17.0 ; os_name == 'nt' or platform_python_implementation != 'PyPy'
cffi==1.17.0 ; platform_python_implementation != 'PyPy' or os_name == 'nt'
# via
# -r docs-requirements.in
# cryptography
charset-normalizer==3.3.2
# via requests
click==8.1.7
# via towncrier
colorama==0.4.6 ; platform_system == 'Windows' or sys_platform == 'win32'
colorama==0.4.6 ; sys_platform == 'win32' or platform_system == 'Windows'
# via
# click
# sphinx
Expand All @@ -40,11 +40,11 @@ imagesize==1.4.1
# via sphinx
immutables==0.20
# via -r docs-requirements.in
importlib-metadata==8.4.0 ; python_version < '3.10'
importlib-metadata==8.4.0 ; python_full_version < '3.10'
# via
# sphinx
# towncrier
importlib-resources==6.4.3 ; python_version < '3.10'
importlib-resources==6.4.3 ; python_full_version < '3.10'
# via towncrier
jinja2==3.1.4
# via
Expand All @@ -57,13 +57,13 @@ outcome==1.3.0.post0
# via -r docs-requirements.in
packaging==24.1
# via sphinx
pycparser==2.22 ; os_name == 'nt' or platform_python_implementation != 'PyPy'
pycparser==2.22 ; platform_python_implementation != 'PyPy' or os_name == 'nt'
# via cffi
pygments==2.18.0
# via sphinx
pyopenssl==24.2.1
# via -r docs-requirements.in
pytz==2024.1 ; python_version < '3.9'
pytz==2024.1 ; python_full_version < '3.9'
# via babel
requests==2.32.3
# via sphinx
Expand Down Expand Up @@ -108,13 +108,13 @@ sphinxcontrib-serializinghtml==1.1.5
# via sphinx
sphinxcontrib-trio==1.1.2
# via -r docs-requirements.in
tomli==2.0.1 ; python_version < '3.11'
tomli==2.0.1 ; python_full_version < '3.11'
# via towncrier
towncrier==24.7.1
# via -r docs-requirements.in
urllib3==2.2.2
# via requests
zipp==3.20.0 ; python_version < '3.10'
zipp==3.20.0 ; python_full_version < '3.10'
# via
# importlib-metadata
# importlib-resources
16 changes: 8 additions & 8 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ black==24.8.0 ; implementation_name == 'cpython'
# via -r test-requirements.in
certifi==2024.7.4
# via requests
cffi==1.17.0 ; os_name == 'nt' or platform_python_implementation != 'PyPy'
cffi==1.17.0 ; platform_python_implementation != 'PyPy' or os_name == 'nt'
# via
# -r test-requirements.in
# cryptography
Expand All @@ -28,7 +28,7 @@ click==8.1.7 ; implementation_name == 'cpython'
# via black
codespell==2.3.0
# via -r test-requirements.in
colorama==0.4.6 ; sys_platform == 'win32' or (implementation_name == 'cpython' and platform_system == 'Windows')
colorama==0.4.6 ; (implementation_name != 'cpython' and sys_platform == 'win32') or (platform_system != 'Windows' and sys_platform == 'win32') or (implementation_name == 'cpython' and platform_system == 'Windows')
# via
# click
# pylint
Expand All @@ -46,7 +46,7 @@ dill==0.3.8
# via pylint
docutils==0.20.1
# via sphinx
exceptiongroup==1.2.2 ; python_version < '3.11'
exceptiongroup==1.2.2 ; python_full_version < '3.11'
# via
# -r test-requirements.in
# pytest
Expand All @@ -57,7 +57,7 @@ idna==3.7
# trustme
imagesize==1.4.1
# via sphinx
importlib-metadata==8.4.0 ; python_version < '3.10'
importlib-metadata==8.4.0 ; python_full_version < '3.10'
# via sphinx
iniconfig==2.0.0
# via pytest
Expand Down Expand Up @@ -97,7 +97,7 @@ platformdirs==4.2.2
# pylint
pluggy==1.5.0
# via pytest
pycparser==2.22 ; os_name == 'nt' or platform_python_implementation != 'PyPy'
pycparser==2.22 ; platform_python_implementation != 'PyPy' or os_name == 'nt'
# via cffi
pygments==2.18.0
# via sphinx
Expand All @@ -109,7 +109,7 @@ pyright==1.1.376
# via -r test-requirements.in
pytest==8.3.2
# via -r test-requirements.in
pytz==2024.1 ; python_version < '3.9'
pytz==2024.1 ; python_full_version < '3.9'
# via babel
requests==2.32.3
# via sphinx
Expand All @@ -135,7 +135,7 @@ sphinxcontrib-qthelp==1.0.3
# via sphinx
sphinxcontrib-serializinghtml==1.1.5
# via sphinx
tomli==2.0.1 ; python_version < '3.11'
tomli==2.0.1 ; python_full_version < '3.11'
# via
# black
# mypy
Expand Down Expand Up @@ -166,5 +166,5 @@ urllib3==2.2.2
# via requests
uv==0.3.0
# via -r test-requirements.in
zipp==3.20.0 ; python_version < '3.10'
zipp==3.20.0 ; python_full_version < '3.10'
# via importlib-metadata

0 comments on commit 4d18556

Please sign in to comment.