Skip to content

Commit

Permalink
use local edit for pip install dev
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyNikiforov committed Jul 5, 2023
1 parent 5dbfc1b commit 9ab0e6d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Install Dev dependencies
run: |
pip install .[dev]
pip install -e .[dev]
- name: Build Python (Linux)
run: |
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Install Dev dependencies
run: |
pip install .[dev]
pip install -e .[dev]
- name: Build Python (Linux)
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9ab0e6d

Please sign in to comment.