Skip to content

Move dependencies from autodoc mock imports to requirements.txt #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,8 @@
# digitalio, micropython and busio. List the modules you use. Without it, the
# autodoc module docs will fail to generate with a warning.
autodoc_mock_imports = [
"displayio",
"adafruit_display_shapes",
"vectorio",
"bitmaptools",
"terminalio",
"adafruit_imageload",
"adafruit_display_text",
"bitmaptools",
]


Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@
# SPDX-License-Identifier: MIT

Adafruit-Blinka
adafruit-blinka-displayio
adafruit-circuitpython-display-shapes
adafruit-circuitpython-imageload
adafruit-circuitpython-display-text
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
author_email="[email protected]",
install_requires=[
"Adafruit-Blinka",
"adafruit-blinka-displayio",
"adafruit-circuitpython-display-shapes",
"adafruit-circuitpython-imageload",
"adafruit-circuitpython-display-text",
],
# Choose your license
license="MIT",
Expand Down