Update Required Python to 3.7
This commit is contained in:
parent
1096b735f8
commit
39f7cfed00
6 changed files with 9 additions and 8 deletions
|
|
@ -9,7 +9,7 @@
|
|||
version: 2
|
||||
|
||||
python:
|
||||
version: "3.6"
|
||||
version: "3.7"
|
||||
install:
|
||||
- requirements: docs/requirements.txt
|
||||
- requirements: requirements.txt
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ Implementation Notes
|
|||
|
||||
**Software and Dependencies:**
|
||||
|
||||
* Linux and Python 3.6 or Higher
|
||||
* Linux and Python 3.7 or Higher
|
||||
|
||||
"""
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ Implementation Notes
|
|||
|
||||
**Software and Dependencies:**
|
||||
|
||||
* Linux and Python 3.5 or Higher
|
||||
* Linux and Python 3.7 or Higher
|
||||
|
||||
"""
|
||||
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
}
|
||||
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -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"],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue