We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08473e0 commit 6675de8Copy full SHA for 6675de8
1 file changed
.github/workflows/publish.yml
@@ -18,13 +18,13 @@ jobs:
18
- name: Set up Python
19
uses: actions/setup-python@v4
20
with:
21
- python-version: "3.x"
+ python-version: "3.10"
22
- name: Install dependencies
23
run: |
24
python -m pip install --upgrade pip
25
- pip install setuptools wheel
+ pip install build
26
- name: Build package
27
28
- python setup.py sdist bdist_wheel # Could also be python -m build
+ python -m build
29
- name: Publish package distributions to PyPI
30
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments