diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f351346..4ae03e9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: matrix: # Available versions: # https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2004-Readme.md#python - python-version: ["3.6", "3.8", "3.11"] + python-version: ["3.7", "3.11"] fail-fast: false env: SLOW_TESTS: 1 diff --git a/setup.py b/setup.py index fa74c95..58f4fdd 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,6 @@ "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -30,6 +29,6 @@ "Programming Language :: Python :: 3.11", "Typing :: Typed", ], - python_requires=">=3.6", + python_requires=">=3.7", install_requires=["requests"], )