Commit dfe8f2d 1 parent 316c66a commit dfe8f2d Copy full SHA for dfe8f2d
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
python-version : " 3.x"
28
28
- name : Install packaging libraries
29
29
run : |
30
- python -m pip install wheel
30
+ python -m pip install build setuptools
31
31
- name : Build a binary wheel and a source tarball
32
32
run : |
33
- python setup.py sdist bdist_wheel
33
+ python -m build -- sdist --wheel .
34
34
- name : Publish distribution 📦 to PyPI
35
35
uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ jobs:
27
27
python-version : " 3.x"
28
28
- name : Install packaging libraries
29
29
run : |
30
- python -m pip install wheel
30
+ python -m pip install build setuptools
31
31
- name : Build a binary wheel and a source tarball
32
32
run : |
33
- python setup.py sdist bdist_wheel
33
+ python -m build -- sdist --wheel .
34
34
- name : Publish distribution 📦 to Test PyPI
35
35
uses : pypa/gh-action-pypi-publish@release/v1
36
36
with :
You can’t perform that action at this time.
0 commit comments