Skip to content
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
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
autodoc_mock_imports = ["machine"]

intersphinx_mapping = {
"python": ("https://docs.python.org/3.5", None),
"python": ("https://docs.python.org/3.6", None),
"CircuitPython": ("https://circuitpython.readthedocs.io/en/latest/", None),
}

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
description="Platform detection for use by libraries like Adafruit-Blinka.",
long_description=long_description,
long_description_content_type="text/x-rst",
python_requires=">=3.5.0",
python_requires=">=3.6.0",
url="https://github.com/adafruit/Adafruit_Python_PlatformDetect",
# If your package is a single module, use this instead of 'packages':
author="Adafruit Industries",
Expand All @@ -40,8 +40,7 @@
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
packages=["adafruit_platformdetect", "adafruit_platformdetect.constants"],
)