diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1d1beadd..ba882a4d 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -22,7 +22,7 @@ jobs: os: [ubuntu-latest, macos-latest] # Use only lowest and highest supported python versions for now, # to speed up CI runs - python-version: [3.7, "3.11"] + python-version: [3.8, "3.11"] node-version: [16] fail-fast: false diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 118ae962..7fe66af4 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11"] fail-fast: false steps: diff --git a/README.md b/README.md index dc7218cf..67668e56 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ details and [documentation](https://isso-comments.de/docs/). ### Requirements -- Python 3.7+ (+ devel headers) +- Python 3.8+ (+ devel headers) - SQLite 3.3.8 or later - a working C compiler diff --git a/docs/docs/reference/installation.rst b/docs/docs/reference/installation.rst index 40a577df..e298d07e 100644 --- a/docs/docs/reference/installation.rst +++ b/docs/docs/reference/installation.rst @@ -82,7 +82,7 @@ Install from PyPi Requirements ^^^^^^^^^^^^ -- Python 3.7+ (+ devel headers) +- Python 3.8+ (+ devel headers) - SQLite 3.3.8 or later - a working C compiler @@ -181,7 +181,7 @@ Install from Source If you want to hack on Isso or track down issues, there's an alternate way to set up Isso. It requires a lot more dependencies and effort: -- Python 3.7+ (+ devel headers) +- Python 3.8+ (+ devel headers) - Virtualenv - SQLite 3.3.8 or later - a working C compiler (e.g. the ``gcc`` package) diff --git a/setup.py b/setup.py index af40beaf..d0b99e47 100755 --- a/setup.py +++ b/setup.py @@ -25,14 +25,13 @@ description='lightweight Disqus alternative', long_description=long_description, long_description_content_type='text/markdown', - python_requires='>=3.7', + python_requires='>=3.8', classifiers=[ "Development Status :: 4 - Beta", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",