From: Melissa LeBlanc-Williams Date: Mon, 6 Dec 2021 17:27:33 +0000 (-0800) Subject: Merge pull request #528 from FoamyGuy/python37_actions X-Git-Tag: 6.16.0 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/d686d4e89cc642173ae518c6c3180110c3b961af?hp=87d82ead05826ca9edc510c827f564112ba148bb Merge pull request #528 from FoamyGuy/python37_actions change actions to use python 3.7 --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95bdea1..79c2575 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 7c11d8a..2e54ac7 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -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), } diff --git a/setup.py b/setup.py index a18904c..7d0264a 100755 --- 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", ], )