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 5837a3b commit eef9c93Copy full SHA for eef9c93
.github/workflows/release.yaml
@@ -143,11 +143,16 @@ jobs:
143
- name: Install dependencies
144
run: |
145
python -m pip install --upgrade pip
146
- pip install setuptools wheel twine mypy==1.18.2 hexbytes==1.3.1
147
-
+ pip install setuptools wheel twine mypy==1.18.2
+
148
+ - name: Drop build folder to prevent shadowing issues w/ the PyPA “build” module
149
+ run: rm -rf build
150
151
+ - name: Install PyPA “build” module
152
+ run: pip install -U build
153
154
- name: Build sdist
- run: |
- python setup.py sdist
155
+ run: python -m build --sdist
156
157
# ----------------------------------------------------
158
# Download wheels built on each runner
0 commit comments