We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aad034b commit ef1148cCopy full SHA for ef1148c
2 files changed
.github/workflows/deploy_pypi.yml
@@ -22,11 +22,10 @@ jobs:
22
python -m pip install --upgrade pip
23
- name: Install package
24
run: |
25
- python -m pip install -e .
26
- pip install setuptools wheel
+ python -m pip install -e .[all]
27
- name: Build a binary wheel and a source tarball
28
29
- python setup.py sdist bdist_wheel
+ python -m build
30
- name: Publish package to PyPI
31
uses: pypa/gh-action-pypi-publish@release/v1
32
with:
.github/workflows/test.yml
@@ -18,7 +18,7 @@ jobs:
18
19
20
21
- name: Test with pytest
pytest -vvv src/zencfg
0 commit comments