diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 28a230f..369fd68 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11"] steps: - uses: actions/checkout@v2 diff --git a/docs/conf.py b/docs/conf.py index d63672f..5524479 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -247,7 +247,7 @@ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'http://docs.python.org/': None} +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} # --- Nitpicking options ------------------------------------------------------ diff --git a/setup.py b/setup.py index 48f3d40..88dc31a 100644 --- a/setup.py +++ b/setup.py @@ -31,13 +31,12 @@ "cssselect": ["py.typed"], }, include_package_data=True, - python_requires=">=3.7", + python_requires=">=3.8", classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",