Skip to content

Commit 56ec1ef

Browse files
committed
Quick fix to require i2cdevice 0.0.6
1 parent c9c63a4 commit 56ec1ef

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

library/CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.0.5
2+
-----
3+
4+
* Require i2cdevice>=0.0.6
5+
16
0.0.4
27
-----
38

library/lsm303d/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import struct
44

55

6-
__version__ = '0.0.4'
6+
__version__ = '0.0.5'
77

88

99
class TemperatureAdapter(Adapter):

library/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
setup(
4141
name='lsm303d',
42-
version='0.0.4',
42+
version='0.0.5',
4343
author='Philip Howard',
4444
author_email='phil@pimoroni.com',
4545
description="""Python library for the LSM303d accelerometer and magnetometer""",
@@ -49,5 +49,5 @@
4949
url='http://www.pimoroni.com',
5050
classifiers=classifiers,
5151
packages=['lsm303d'],
52-
install_requires=['i2cdevice>=0.0.4']
52+
install_requires=['i2cdevice>=0.0.6']
5353
)

0 commit comments

Comments
 (0)