Skip to content

Commit 134ebac

Browse files
authored
Merge pull request #139 from makermelissa/master
Change minimum Python to 3.6
2 parents b25f2d6 + 604c5a0 commit 134ebac

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
autodoc_mock_imports = ["machine"]
2424

2525
intersphinx_mapping = {
26-
"python": ("https://docs.python.org/3.5", None),
26+
"python": ("https://docs.python.org/3.6", None),
2727
"CircuitPython": ("https://circuitpython.readthedocs.io/en/latest/", None),
2828
}
2929

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
description="Platform detection for use by libraries like Adafruit-Blinka.",
2525
long_description=long_description,
2626
long_description_content_type="text/x-rst",
27-
python_requires=">=3.5.0",
27+
python_requires=">=3.6.0",
2828
url="https://github.com/adafruit/Adafruit_Python_PlatformDetect",
2929
# If your package is a single module, use this instead of 'packages':
3030
author="Adafruit Industries",
@@ -40,8 +40,7 @@
4040
"Topic :: System :: Hardware",
4141
"License :: OSI Approved :: MIT License",
4242
"Programming Language :: Python :: 3",
43-
"Programming Language :: Python :: 3.4",
44-
"Programming Language :: Python :: 3.5",
43+
"Programming Language :: Python :: 3.6",
4544
],
4645
packages=["adafruit_platformdetect", "adafruit_platformdetect.constants"],
4746
)

0 commit comments

Comments
 (0)