Skip to content

Commit 50902ac

Browse files
committed
Prep for v1.0.5
1 parent 05f8069 commit 50902ac

File tree

8 files changed

+89
-4
lines changed

8 files changed

+89
-4
lines changed

library/CHANGELOG.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.5
2+
-----
3+
4+
* New: set_temp_offset to calibrate temperature offset in degrees C
5+
16
1.0.4
27
-----
38

library/MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include CHANGELOG.txt
22
include LICENSE.txt
3-
include README.txt
3+
include README.rst
44
include setup.py
55
recursive-include bme680 *.py

library/README.rst

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
BME680
2+
======
3+
4+
https://shop.pimoroni.com/products/bme680
5+
6+
The state-of-the-art BME680 breakout lets you measure temperature,
7+
pressure, humidity, and indoor air quality.
8+
9+
Installing
10+
----------
11+
12+
Full install (recommended):
13+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
14+
15+
We've created an easy installation script that will install all
16+
pre-requisites and get your BME680 up and running with minimal efforts.
17+
To run it, fire up Terminal which you'll find in Menu -> Accessories ->
18+
Terminal on your Raspberry Pi desktop, as illustrated below:
19+
20+
.. figure:: http://get.pimoroni.com/resources/github-repo-terminal.png
21+
:alt: Finding the terminal
22+
23+
In the new terminal window type the command exactly as it appears below
24+
(check for typos) and follow the on-screen instructions:
25+
26+
.. code:: bash
27+
28+
curl https://get.pimoroni.com/bme680 | bash
29+
30+
Manual install:
31+
~~~~~~~~~~~~~~~
32+
33+
Library install for Python 3:
34+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
35+
36+
.. code:: bash
37+
38+
sudo pip3 install bme680
39+
40+
Library install for Python 2:
41+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42+
43+
.. code:: bash
44+
45+
sudo pip2 install bme680
46+
47+
Development:
48+
~~~~~~~~~~~~
49+
50+
If you want to contribute, or like living on the edge of your seat by
51+
having the latest code, you should clone this repository, ``cd`` to the
52+
library directory, and run:
53+
54+
.. code:: bash
55+
56+
sudo python3 setup.py install
57+
58+
(or ``sudo python setup.py install`` whichever your primary Python
59+
environment may be)
60+
61+
In all cases you will have to enable the i2c bus.
62+
63+
Documentation & Support
64+
-----------------------
65+
66+
- Guides and tutorials - https://learn.pimoroni.com/bme680
67+
- Get help - http://forums.pimoroni.com/c/support
68+

library/README.txt

Whitespace-only changes.

library/bme680/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import math
33
import time
44

5-
__version__ = '1.0.4'
5+
__version__ = '1.0.5'
66

77
class BME680(BME680Data):
88
"""BOSCH BME680

library/setup.py

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

4040
setup(
4141
name = 'bme680',
42-
version = '1.0.4',
42+
version = '1.0.5',
4343
author = 'Philip Howard',
4444
author_email = '[email protected]',
4545
description = """Python library for driving the Pimoroni BME680 Breakout""",
46-
long_description= open('README.txt').read() + open('CHANGELOG.txt').read(),
46+
long_description= open('README.rst').read() + "\n" + open('CHANGELOG.txt').read(),
4747
license = 'MIT',
4848
keywords = 'Raspberry Pi',
4949
url = 'http://www.pimoroni.com',

packaging/CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
bme680 (1.0.5) stable; urgency=low
2+
3+
* New: set_temp_offset to calibrate temperature offset in degrees C
4+
5+
-- Phil Howard <[email protected]> Fri, 01 Jun 2018 00:00:00 +0000
6+
17
bme680 (1.0.4) stable; urgency=low
28

39
* Fix to range_sw_err for extremely high gas readings

packaging/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
bme680 (1.0.5) stable; urgency=low
2+
3+
* New: set_temp_offset to calibrate temperature offset in degrees C
4+
5+
-- Phil Howard <[email protected]> Fri, 01 Jun 2018 00:00:00 +0000
6+
17
bme680 (1.0.4) stable; urgency=low
28

39
* Fix to range_sw_err for extremely high gas readings

0 commit comments

Comments
 (0)