File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,11 @@ jobs:
2727 run : |
2828 python -m pip install --upgrade pip
2929 pip install build
30+ pip install twine
3031 - name : Build package
3132 run : python -m build -s
3233 - name : Publish package
3334 uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
3435 with :
3536 user : __token__
36- password : ${{ secrets.PYPI_API_TOKEN }}
37+ password : ${{secrets.PYPI_API_TOKEN}}
Original file line number Diff line number Diff line change 2424from utime import sleep_ms , ticks_diff , ticks_ms
2525
2626
27+ __version__ = '0.3.2'
28+
29+
2730# These I2C default settings work for TinyPico (ESP32-based board)
2831MAX3010X_I2C_ADDRESS = 0x57
2932I2C_SPEED_FAST = 400000 # 400kHz speed
Original file line number Diff line number Diff line change 33
44setup (
55 name = "micropython-max30102" ,
6- version = "0.3.1 " ,
6+ version = "0.3.2 " ,
77 description = "MAX30102 driver for micropython." ,
88 long_description = open ("README.md" ).read (),
99 long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments