File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 7171 run : |
7272 pip install --upgrade build twine
7373 for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
74- sed -i -e "s/0.0.0- auto.0/1.2.3/" $file;
74+ sed -i -e "s/0.0.0+ auto.0/1.2.3/" $file;
7575 done;
7676 python -m build
7777 twine check dist/*
Original file line number Diff line number Diff line change 8282 TWINE_PASSWORD : ${{ secrets.pypi_password }}
8383 run : |
8484 for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
85- sed -i -e "s/0.0.0- auto.0/${{github.event.release.tag_name}}/" $file;
85+ sed -i -e "s/0.0.0+ auto.0/${{github.event.release.tag_name}}/" $file;
8686 done;
8787 python -m build
8888 twine upload dist/*
Original file line number Diff line number Diff line change 2828 pass
2929
3030
31- __version__ = "0.0.0- auto.0"
31+ __version__ = "0.0.0+ auto.0"
3232__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel.git"
3333
3434
Original file line number Diff line number Diff line change 66requires = [
77 " setuptools" ,
88 " wheel" ,
9+ " setuptools-scm" ,
910]
1011
1112[project ]
1213name = " adafruit-circuitpython-neopixel"
1314description = " CircuitPython library for NeoPixel LEDs."
14- version = " 0.0.0- auto.0"
15+ version = " 0.0.0+ auto.0"
1516readme = " README.rst"
1617authors = [
1718 {name = " Adafruit Industries" , email = " circuitpython@adafruit.com" }
You can’t perform that action at this time.
0 commit comments