]> Repositories - Adafruit_Blinka-hackapet.git/commitdiff
Merge pull request #528 from FoamyGuy/python37_actions 6.16.0
authorMelissa LeBlanc-Williams <melissa@adafruit.com>
Mon, 6 Dec 2021 17:27:33 +0000 (09:27 -0800)
committerGitHub <noreply@github.com>
Mon, 6 Dec 2021 17:27:33 +0000 (09:27 -0800)
change actions to use python 3.7

.github/workflows/build.yml
docs/conf.py
setup.py

index 95bdea1fb9d332143cee8077169705f8e40f053d..79c25752f014da9e0fd5072dcf1a7c712b2fe2d6 100644 (file)
@@ -13,10 +13,10 @@ jobs:
     - name: Translate Repo Name For Build Tools filename_prefix
       id: repo-name
       run: echo ::set-output name=repo-name::Adafruit-Blinka
-    - name: Set up Python 3.6
+    - name: Set up Python 3.7
       uses: actions/setup-python@v1
       with:
-        python-version: 3.6
+        python-version: 3.7
     - name: Versions
       run: |
         python3 --version
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",
     ],
 )