Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pre-compile requirements.txt with uv pip compile #516

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ jobs:
cache: pip

- name: Install dependencies 📦
run: |
pip install -r requirements.txt
pip freeze
run: pip install -r requirements.txt

- name: Run tests
run: pytest -s -m "${{ inputs.integration && 'integration' || 'not integration' }}" --target ${{inputs.target}}
Expand Down
7 changes: 7 additions & 0 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
docker
requests
pre-commit
pytest~=7.0
pytest-docker
doit
dunamai
39 changes: 32 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,32 @@
docker
requests
pre-commit
pytest~=7.0
pytest-docker
doit
dunamai
# This file was autogenerated by uv via the following command:
# uv pip compile --universal --python 3.9 requirements.in --annotation-style=line -o requirements.txt
attrs==24.3.0 # via pytest-docker
certifi==2024.12.14 # via requests
cfgv==3.4.0 # via pre-commit
charset-normalizer==3.4.1 # via requests
cloudpickle==3.1.1 # via doit
colorama==0.4.6 ; sys_platform == 'win32' # via pytest
distlib==0.3.9 # via virtualenv
docker==7.1.0 # via -r requirements.in
doit==0.36.0 # via -r requirements.in
dunamai==1.23.0 # via -r requirements.in
exceptiongroup==1.2.2 ; python_full_version < '3.11' # via pytest
filelock==3.17.0 # via virtualenv
identify==2.6.6 # via pre-commit
idna==3.10 # via requests
importlib-metadata==8.6.1 # via doit
iniconfig==2.0.0 # via pytest
nodeenv==1.9.1 # via pre-commit
packaging==24.2 # via dunamai, pytest
platformdirs==4.3.6 # via virtualenv
pluggy==1.5.0 # via pytest
pre-commit==4.1.0 # via -r requirements.in
pytest==7.4.4 # via pytest-docker, -r requirements.in
pytest-docker==3.1.1 # via -r requirements.in
pywin32==308 ; sys_platform == 'win32' # via docker
pyyaml==6.0.2 # via pre-commit
requests==2.32.3 # via docker, -r requirements.in
tomli==2.2.1 ; python_full_version < '3.11' # via pytest
urllib3==2.3.0 # via docker, requests
virtualenv==20.29.1 # via pre-commit
zipp==3.21.0 # via importlib-metadata
Loading