Skip to content

Commit 0f2f4fc

Browse files
committed
fixing dox build
1 parent c42a50f commit 0f2f4fc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ Installing from PyPI
3535
=====================
3636

3737
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally `from
38-
PyPI <https://pypi.org/project/adafruit-circuitpython-bno080/>`_. To install for current user:
38+
PyPI <https://pypi.org/project/adafruit-circuitpython-bno08x/>`_. To install for current user:
3939

4040
.. code-block:: shell
4141
42-
pip3 install adafruit-circuitpython-bno080
42+
pip3 install adafruit-circuitpython-bno08x
4343
4444
To install system-wide (this may be required in some cases):
4545

4646
.. code-block:: shell
4747
48-
sudo pip3 install adafruit-circuitpython-bno080
48+
sudo pip3 install adafruit-circuitpython-bno08x
4949
5050
To install in a virtual environment in your current project:
5151

@@ -54,7 +54,7 @@ To install in a virtual environment in your current project:
5454
mkdir project-name && cd project-name
5555
python3 -m venv .env
5656
source .env/bin/activate
57-
pip3 install adafruit-circuitpython-bno080
57+
pip3 install adafruit-circuitpython-bno08x
5858
5959
Usage Example
6060
=============

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
html_favicon = "_static/favicon.ico"
125125

126126
# Output file base name for HTML help builder.
127-
htmlhelp_basename = "AdafruitBno080Librarydoc"
127+
htmlhelp_basename = "AdafruitBno08xLibrarydoc"
128128

129129
# -- Options for LaTeX output ---------------------------------------------
130130

docs/examples.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ Simple test
33

44
Ensure your device works with this simple test.
55

6-
.. literalinclude:: ../examples/bno080_simpletest.py
7-
:caption: examples/bno080_simpletest.py
6+
.. literalinclude:: ../examples/bno08x_simpletest.py
7+
:caption: examples/bno08x_simpletest.py
88
:linenos:

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
long_description = f.read()
2424

2525
setup(
26-
name="adafruit-circuitpython-bno080",
26+
name="adafruit-circuitpython-bno08x",
2727
use_scm_version=True,
2828
setup_requires=["setuptools_scm"],
2929
description="Helper library for the Hillcrest Laboratories BNO08x IMUs",
@@ -50,7 +50,7 @@
5050
],
5151
# What does your project relate to?
5252
keywords="adafruit blinka circuitpython micropython bno080 IMU BNO055 SENSOR FUSION VR "
53-
"MOTION TRACK",
53+
"MOTION TRACK BNO085",
5454
# You can just specify the packages manually here if your project is
5555
# simple. Or you can use find_packages().
5656
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,

0 commit comments

Comments
 (0)