Skip to content

Commit fe82406

Browse files
author
brentru
committed
fix build config for folder setup
1 parent 2fb42c1 commit fe82406

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ install:
4242
- pip install --force-reinstall pylint==1.9.2
4343

4444
script:
45-
- pylint adafruit_atecc.py
45+
- pylint adafruit_atecc/*.py
4646
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py)
4747
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-atecc --library_location .
4848
- cd docs && sphinx-build -E -W -b html . _build/html && cd ..

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To install in a virtual environment in your current project:
5959
Usage Example
6060
=============
6161

62-
.. todo:: Add a quick, simple example. It and other examples should live in the examples folder and be included in docs/examples.rst.
62+
Examples of using this module are in examples folder.
6363

6464
Contributing
6565
============

docs/conf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,10 @@
1616
'sphinx.ext.todo',
1717
]
1818

19-
# TODO: Please Read!
2019
# Uncomment the below if you use native CircuitPython modules such as
2120
# digitalio, micropython and busio. List the modules you use. Without it, the
2221
# autodoc module docs will fail to generate with a warning.
23-
# autodoc_mock_imports = ["digitalio", "busio"]
24-
22+
autodoc_mock_imports = ["micropython", "adafruit-bus-device", "adafruit-binascii"]
2523

2624
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)}
2725

0 commit comments

Comments
 (0)