Skip to content

Commit 1181389

Browse files
committed
Fix build
1 parent e606ce1 commit 1181389

File tree

5 files changed

+446
-472
lines changed

5 files changed

+446
-472
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
poetry env use ${{ matrix.python-version }}
29-
poetry install --no-interaction
29+
poetry install --no-ansi --no-root --no-interaction --only build
30+
poetry run pip install -r tests/requirements.txt
3031
3132
- name: Lint
3233
run: poetry run poe lint

.github/workflows/deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
- name: Build
2323
run: |
2424
poetry version ${{ github.ref_name }}
25-
sed -i "" "s/\[tool.poetry.dependencies\]/[tool.poetry.group.excluded.dependencies]/" pyproject.toml
26-
sed -i "" "s/\[tool.poetry.group.pypi.dependencies\]/[tool.poetry.dependencies]/" pyproject.toml
2725
poetry build
2826
2927
- name: Publish

0 commit comments

Comments
 (0)