From 3deebfd5629a11c7c0f9aac1487a8d3da055690d Mon Sep 17 00:00:00 2001 From: seppzer0 Date: Sat, 14 Sep 2024 17:05:08 +0300 Subject: [PATCH] chore: rename requirement file --- .github/workflows/github-ci.yml | 2 +- .gitlab-ci.yml | 2 +- Dockerfile | 2 +- README.md | 2 +- uv-version.txt => requirement-uv.txt | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename uv-version.txt => requirement-uv.txt (100%) diff --git a/.github/workflows/github-ci.yml b/.github/workflows/github-ci.yml index 3ba6242..7145c1e 100644 --- a/.github/workflows/github-ci.yml +++ b/.github/workflows/github-ci.yml @@ -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 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ce71f29..034dcef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index b425112..c5dcd73 100755 --- a/Dockerfile +++ b/Dockerfile @@ -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; diff --git a/README.md b/README.md index 8afd58f..a3cb437 100755 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/uv-version.txt b/requirement-uv.txt similarity index 100% rename from uv-version.txt rename to requirement-uv.txt