Skip to content

Commit ef1148c

Browse files
committed
Fix workflows
1 parent aad034b commit ef1148c

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/deploy_pypi.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@ jobs:
2222
python -m pip install --upgrade pip
2323
- name: Install package
2424
run: |
25-
python -m pip install -e .
26-
pip install setuptools wheel
25+
python -m pip install -e .[all]
2726
- name: Build a binary wheel and a source tarball
2827
run: |
29-
python setup.py sdist bdist_wheel
28+
python -m build
3029
- name: Publish package to PyPI
3130
uses: pypa/gh-action-pypi-publish@release/v1
3231
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python -m pip install --upgrade pip
1919
- name: Install package
2020
run: |
21-
python -m pip install -e .
21+
python -m pip install -e .[all]
2222
- name: Test with pytest
2323
run: |
2424
pytest -vvv src/zencfg

0 commit comments

Comments
 (0)