File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 66
77jobs :
88 deploy :
9- # Don't run on linux to prevent spidev install from failing
10- runs-on : macos-latest
9+ runs-on : ubuntu-latest
1110 steps :
1211 - uses : actions/checkout@v2
1312 - name : Set up Python
@@ -17,11 +16,11 @@ jobs:
1716 - name : Install dependencies
1817 run : |
1918 python -m pip install --upgrade pip
20- pip install setuptools wheel twine
19+ pip install twine build
2120 - name : Build and publish
2221 env :
2322 TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
2423 TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
2524 run : |
26- python setup.py bdist_wheel
25+ python -m build
2726 twine upload dist/*
Original file line number Diff line number Diff line change 11__pycache__
22.tox
33python_adc_eval.egg-info
4+ dist
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " python-adc-eval"
7- version = " 0.1.0rc0 "
7+ version = " 0.1.0rc1 "
88license = {text = " MIT" }
99description = " ADC Evaluation Library"
1010readme = " README.rst"
You can’t perform that action at this time.
0 commit comments