From 9ab0e6dbcaabf3fcfd5448f2892c1b1318ba55a9 Mon Sep 17 00:00:00 2001 From: Andrey Nikiforov Date: Tue, 4 Jul 2023 22:38:34 -0700 Subject: [PATCH] use local edit for pip install dev --- .github/workflows/create-release.yml | 4 ++-- .github/workflows/quality-checks.yml | 4 ++-- Dockerfile | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 4f67cc290..d97f6eeca 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -54,7 +54,7 @@ jobs: - name: Install Dev dependencies run: | - pip install .[dev] + pip install -e .[dev] - name: Build Python (Linux) run: | @@ -143,7 +143,7 @@ jobs: - name: Install Dev dependencies run: | - pip install .[dev] + pip install -e .[dev] - name: Download artifacts uses: actions/download-artifact@v3 diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index 0e2e75c19..f889cd177 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -27,7 +27,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Test dependencies run: | - pip install .[test] + pip install -e .[test] - name: Lint run: | @@ -80,7 +80,7 @@ jobs: - name: Install Dev dependencies run: | - pip install .[dev] + pip install -e .[dev] - name: Build Python (Linux) run: | diff --git a/Dockerfile b/Dockerfile index 7171f1250..42db690f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN set -xe \ COPY . . -RUN pip3 install .[dev] +RUN pip3 install -e .[dev] RUN pyinstaller -y --collect-all keyrings.alt --hidden-import pkgutil --collect-all tzdata src/exec.py