From: foamyguy Date: Thu, 2 Dec 2021 00:52:43 +0000 (-0600) Subject: update setup.py and docs conf to specify python 3.7 X-Git-Tag: 6.16.0^2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/2a3fdcd525ee228422250811ea90c80b6976607b?hp=--cc update setup.py and docs conf to specify python 3.7 --- 2a3fdcd525ee228422250811ea90c80b6976607b 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", ], )