File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,11 @@ jobs:
27
27
run : |
28
28
python -m pip install --upgrade pip
29
29
pip install build
30
+ pip install twine
30
31
- name : Build package
31
32
run : python -m build -s
32
33
- name : Publish package
33
34
uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
34
35
with :
35
36
user : __token__
36
- password : ${{ secrets.PYPI_API_TOKEN }}
37
+ password : ${{secrets.PYPI_API_TOKEN}}
Original file line number Diff line number Diff line change 24
24
from utime import sleep_ms , ticks_diff , ticks_ms
25
25
26
26
27
+ __version__ = '0.3.2'
28
+
29
+
27
30
# These I2C default settings work for TinyPico (ESP32-based board)
28
31
MAX3010X_I2C_ADDRESS = 0x57
29
32
I2C_SPEED_FAST = 400000 # 400kHz speed
Original file line number Diff line number Diff line change 3
3
4
4
setup (
5
5
name = "micropython-max30102" ,
6
- version = "0.3.1 " ,
6
+ version = "0.3.2 " ,
7
7
description = "MAX30102 driver for micropython." ,
8
8
long_description = open ("README.md" ).read (),
9
9
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments