We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07727c9 commit d045d2cCopy full SHA for d045d2c
.github/workflows/main.yml
@@ -97,17 +97,21 @@ jobs:
97
98
steps:
99
- uses: actions/checkout@v1
100
+
101
- name: Set up Python
102
uses: actions/setup-python@v1
103
with:
104
python-version: "3.9"
- - name: Install wheel
105
106
+ - name: Install dependencies
107
run: |
108
python -m pip install --upgrade pip
- pip install wheel
109
+ pip install build
110
111
- name: Build package
112
- python setup.py sdist bdist_wheel
113
+ python -m build
114
115
- name: Publish package to PyPI
116
uses: pypa/gh-action-pypi-publish@master
117
0 commit comments