From 8a79a9adf7aa8e01d723e28f8902417aa251ee1f Mon Sep 17 00:00:00 2001 From: sommersoft Date: Sat, 10 Mar 2018 09:29:23 -0600 Subject: [PATCH 1/2] updated README; added Travis badge --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index 463c427..f867f14 100644 --- a/README.rst +++ b/README.rst @@ -10,6 +10,10 @@ Adafruit CircuitPython CCS811 Library :target: https://adafru.it/discord :alt: Discord +.. image:: https://travis-ci.org/adafruit/Adafruit_CircuitPython_CCS811.svg?branch=master + :target: https://travis-ci.org/adafruit/Adafruit_CircuitPython_CCS811 + :alt: Build Status + CircuitPython driver for the `CCS811 air quality sensor `_. Dependencies From 4b03fe829b1b0664e8a1c1cf4223b17e5fa34dd6 Mon Sep 17 00:00:00 2001 From: sommersoft Date: Sat, 10 Mar 2018 09:32:25 -0600 Subject: [PATCH 2/2] updated conf.py; bus device intersphinx link --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 0b14a00..4c29981 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -41,6 +41,8 @@ # autodoc module docs will fail to generate with a warning. autodoc_mock_imports = ["micropython", "adafruit_bus_device", "adafruit_register"] +intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),'BusDevice': ('https://circuitpython.readthedocs.io/projects/busdevice/en/latest/', None),'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)} + # Mock out micropython ourselves. #import imp #m = imp.new_module("micropython")