diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 22152379..1d1beadd 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.6, "3.11"] + python-version: [3.7, "3.11"] node-version: [16] fail-fast: false diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 485738a3..118ae962 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.6, 3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] fail-fast: false steps: diff --git a/README.md b/README.md index 1d7ca63e..e4e5edf4 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,10 @@ details and [documentation](https://isso-comments.de/docs/). ![Isso in Action](https://user-images.githubusercontent.com/10212877/167268553-3f30b448-25ff-4850-afef-df2f2e599c93.png) -## Geting started +## Getting started **Requirements** -- Python 3.6+ (+ devel headers) +- Python 3.7+ (+ 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 e506a2a3..40a577df 100644 --- a/docs/docs/reference/installation.rst +++ b/docs/docs/reference/installation.rst @@ -82,7 +82,7 @@ Install from PyPi Requirements ^^^^^^^^^^^^ -- Python 3.6+ (+ devel headers) +- Python 3.7+ (+ 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.6+ (+ devel headers) +- Python 3.7+ (+ 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 8997b61b..af40beaf 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.6', + python_requires='>=3.7', 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.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",