Skip to content

Commit 3fb5770

Browse files
authored
Merge pull request #226 from makermelissa/main
Update Required Python to 3.7
2 parents 4666ca2 + d5dbc89 commit 3fb5770

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
version: 2
1010

1111
python:
12-
version: "3.6"
12+
version: "3.7"
1313
install:
1414
- requirements: docs/requirements.txt
1515
- requirements: requirements.txt

README.rst.license

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
2-
3-
SPDX-License-Identifier: MIT
1+
# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT

adafruit_platformdetect/board.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1717
**Software and Dependencies:**
1818
19-
* Linux and Python 3.6 or Higher
19+
* Linux and Python 3.7 or Higher
2020
2121
"""
2222

bin/detect.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
**Software and Dependencies:**
1919
20-
* Linux and Python 3.5 or Higher
20+
* Linux and Python 3.7 or Higher
2121
2222
"""
2323

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
autodoc_mock_imports = ["machine"]
2828

2929
intersphinx_mapping = {
30-
"python": ("https://docs.python.org/3.6", None),
30+
"python": ("https://docs.python.org/3.7", None),
3131
"CircuitPython": ("https://circuitpython.readthedocs.io/en/latest/", None),
3232
}
3333

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
description="Platform detection for use by libraries like Adafruit-Blinka.",
2929
long_description=long_description,
3030
long_description_content_type="text/x-rst",
31-
python_requires=">=3.6.0",
31+
python_requires=">=3.7.0",
3232
url="https://github.com/adafruit/Adafruit_Python_PlatformDetect",
3333
# If your package is a single module, use this instead of 'packages':
3434
author="Adafruit Industries",
@@ -44,7 +44,7 @@
4444
"Topic :: System :: Hardware",
4545
"License :: OSI Approved :: MIT License",
4646
"Programming Language :: Python :: 3",
47-
"Programming Language :: Python :: 3.6",
47+
"Programming Language :: Python :: 3.7",
4848
],
4949
packages=["adafruit_platformdetect", "adafruit_platformdetect.constants"],
5050
)

0 commit comments

Comments
 (0)