Skip to content

Commit

Permalink
chore: rename requirement file
Browse files Browse the repository at this point in the history
  • Loading branch information
seppzer0 committed Sep 14, 2024
1 parent fc00a4c commit 3deebfd
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
python-version: "3.12"
- name: Build And Assemble
run: |
python3 -m pip install -r uv-version.txt
python3 -m pip install -r requirement-uv.txt
uv sync --frozen --no-install-project
export PYTHONPATH=$(pwd)
uv run scripts/run_tests.py
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ job-build:
- docker:dind
script:
- apk update && apk add python3 py3-pip
- python3 -m pip install -r uv-version.txt --break-system-packages
- python3 -m pip install -r requirement-uv.txt --break-system-packages
- uv sync --frozen --no-install-project
- export PYTHONPATH=$(pwd)
- uv run scripts/run_tests.py
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN \

# configure Python environment
RUN python3 -m pip install pip --upgrade && \
python3 -m pip install -r uv-version.txt && \
python3 -m pip install -r requirement-uv.txt && \
uv sync --frozen --no-install-project

# install shared tools from tools.json;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ You will also need to install [uv](https://github.com/astral-sh/uv). Please refe
# making "builder" executable from source
export PYTHONPATH=$(pwd)
# installing uv via pip
python3 -m pip install -r uv-version.txt
python3 -m pip install -r requirement-uv.txt
# collecting project dependencies into a local .venv
uv sync --frozen --no-install-project
```
Expand Down
File renamed without changes.

0 comments on commit 3deebfd

Please sign in to comment.