From cf1263faffa64acff41cfc86d9c51476400fd6d5 Mon Sep 17 00:00:00 2001 From: Nicola <62206011+n-elia@users.noreply.github.com> Date: Tue, 15 Mar 2022 20:20:43 +0100 Subject: [PATCH] Minor changes --- LICENSE | 2 +- max30102/__init__.py | 3 --- setup.py | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index a9aea7b..fc7ddc2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Nicola Elia +Copyright (c) 2022 Nicola Elia Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/max30102/__init__.py b/max30102/__init__.py index 7f375f9..de4f56d 100644 --- a/max30102/__init__.py +++ b/max30102/__init__.py @@ -24,9 +24,6 @@ from utime import sleep_ms, ticks_diff, ticks_ms -__version__ = '0.3.2' - - # These I2C default settings work for TinyPico (ESP32-based board) MAX3010X_I2C_ADDRESS = 0x57 I2C_SPEED_FAST = 400000 # 400kHz speed diff --git a/setup.py b/setup.py index 18c126e..a38fdfd 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="micropython-max30102", - version="0.3.2", + version="0.3.3", description="MAX30102 driver for micropython.", long_description=open("README.md").read(), long_description_content_type='text/markdown',