Skip to content

Commit 6251e5e

Browse files
author
Rudy Puig
committed
chore: fix workflow installation (sigh)
1 parent b2f1e7c commit 6251e5e

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
architecture: x64
2323
cache: pip
2424
- run: python3 --version
25-
- run: python3 -m pip install --quiet --upgrade pip setuptools
26-
- run: python3 -m pip install --editable '.[dev,test]'
27-
- run: python3 -m ruff check -q --diff --output-format=full .
28-
- run: python3 -m ruff format -q --diff --check .
25+
- run: pip install --quiet --upgrade pip setuptools
26+
- run: pip install --editable '.[dev,test]'
27+
- run: ruff check -q --diff --output-format=full .
28+
- run: ruff format -q --diff --check .
2929
continue-on-error: true
30-
- run: python3 -m pytest -vvv --cov --cov-context=test --cov-report=xml
30+
- run: pytest -vvv --cov --cov-context=test --cov-report=xml

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ license = { file = 'LICENSE.txt' }
1010
readme = 'README.md'
1111
authors = [{ name = 'Rodolfo Puig', email = '[email protected]' }]
1212
requires-python = '~= 3.10'
13-
dependencies = []
1413

1514
[project.optional-dependencies]
1615
dev = [

0 commit comments

Comments
 (0)