From 604c5a0c5556e22bea37295857fadf0691c6b7b9 Mon Sep 17 00:00:00 2001 From: Melissa LeBlanc-Williams Date: Wed, 3 Feb 2021 08:50:28 -0800 Subject: [PATCH] Change minimum Python to 3.6 --- docs/conf.py | 2 +- setup.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b9a7c0cc..0d00c3ed 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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), } diff --git a/setup.py b/setup.py index 92866b6a..4e70e276 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -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"], )