Update Required Python to 3.7

This commit is contained in:
Melissa LeBlanc-Williams 2022-03-07 08:18:44 -08:00
parent 1096b735f8
commit 39f7cfed00
6 changed files with 9 additions and 8 deletions

View file

@ -9,7 +9,7 @@
version: 2
python:
version: "3.6"
version: "3.7"
install:
- requirements: docs/requirements.txt
- requirements: requirements.txt

View file

@ -1,3 +1,4 @@
SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
#
# SPDX-License-Identifier: MIT
SPDX-License-Identifier: MIT

View file

@ -16,7 +16,7 @@ Implementation Notes
**Software and Dependencies:**
* Linux and Python 3.6 or Higher
* Linux and Python 3.7 or Higher
"""

View file

@ -15,7 +15,7 @@ Implementation Notes
**Software and Dependencies:**
* Linux and Python 3.5 or Higher
* Linux and Python 3.7 or Higher
"""

View file

@ -27,7 +27,7 @@ extensions = [
autodoc_mock_imports = ["machine"]
intersphinx_mapping = {
"python": ("https://docs.python.org/3.6", None),
"python": ("https://docs.python.org/3.7", None),
"CircuitPython": ("https://circuitpython.readthedocs.io/en/latest/", None),
}

View file

@ -28,7 +28,7 @@ setup(
description="Platform detection for use by libraries like Adafruit-Blinka.",
long_description=long_description,
long_description_content_type="text/x-rst",
python_requires=">=3.6.0",
python_requires=">=3.7.0",
url="https://github.com/adafruit/Adafruit_Python_PlatformDetect",
# If your package is a single module, use this instead of 'packages':
author="Adafruit Industries",
@ -44,7 +44,7 @@ setup(
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=["adafruit_platformdetect", "adafruit_platformdetect.constants"],
)