Skip to content

Commit

Permalink
Fix workflow dependency installation paths
Browse files Browse the repository at this point in the history
  • Loading branch information
OLILHR committed Dec 2, 2024
1 parent 642343f commit ad9ff40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev_requirements/requirements-formatting.txt
- name: ${{ matrix.tool }} code formatter
pip install .[formatting]
- name: ${{ matrix.tool }} Code Formatter
run: |
${{ matrix.tool }} . --check
2 changes: 1 addition & 1 deletion .github/workflows/publishing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev_requirements/requirements-packaging.txt
pip install .[packaging]
- name: Build wheel and source distributions
run: |
pdm build
Expand Down
6 changes: 0 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@ commands =
mypy --show-error-codes src/package --strict
mypy --show-error-codes unittests --strict

[testenv:compile_requirements]
deps =
pip-compile-multi
commands =
pip-compile-multi -d dev_requirements --autoresolve

[testenv:dev]
deps =
{[testenv:coverage]deps}
Expand Down

0 comments on commit ad9ff40

Please sign in to comment.