]> Repositories - Adafruit_Blinka-hackapet.git/commitdiff
update setup.py and docs conf to specify python 3.7
authorfoamyguy <foamyguy@gmail.com>
Thu, 2 Dec 2021 00:52:43 +0000 (18:52 -0600)
committerfoamyguy <foamyguy@gmail.com>
Thu, 2 Dec 2021 00:52:43 +0000 (18:52 -0600)
docs/conf.py
setup.py

index 7c11d8abdd1b7d8a0e7126448bfffe8995de46f7..2e54ac77e7a68d741ffe0e63440478c95ed30ffd 100755 (executable)
@@ -29,7 +29,7 @@ autodoc_mock_imports = [
 ]
 
 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),
 }
 
index a18904c1d46871640d8b45be7acc970724866e0f..7d0264a02ce38f501ba1daca913c4299b4c51b49 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -45,7 +45,7 @@ setup(
     long_description_content_type="text/x-rst",
     author="Adafruit Industries",
     author_email="circuitpython@adafruit.com",
-    python_requires=">=3.6.0",
+    python_requires=">=3.7.0",
     url="https://github.com/adafruit/Adafruit_Blinka",
     package_dir={"": "src"},
     packages=find_packages("src"),
@@ -80,7 +80,7 @@ setup(
         "License :: OSI Approved :: MIT License",
         "Programming Language :: Python",
         "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.6",
+        "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: Implementation :: MicroPython",
     ],
 )