We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c63a4 commit 56ec1efCopy full SHA for 56ec1ef
library/CHANGELOG.txt
@@ -1,3 +1,8 @@
1
+0.0.5
2
+-----
3
+
4
+* Require i2cdevice>=0.0.6
5
6
0.0.4
7
-----
8
library/lsm303d/__init__.py
@@ -3,7 +3,7 @@
import struct
-__version__ = '0.0.4'
+__version__ = '0.0.5'
9
class TemperatureAdapter(Adapter):
library/setup.py
@@ -39,7 +39,7 @@
39
40
setup(
41
name='lsm303d',
42
- version='0.0.4',
+ version='0.0.5',
43
author='Philip Howard',
44
author_email='phil@pimoroni.com',
45
description="""Python library for the LSM303d accelerometer and magnetometer""",
@@ -49,5 +49,5 @@
49
url='http://www.pimoroni.com',
50
classifiers=classifiers,
51
packages=['lsm303d'],
52
- install_requires=['i2cdevice>=0.0.4']
+ install_requires=['i2cdevice>=0.0.6']
53
)
0 commit comments