Skip to content

Commit

Permalink
Bump minimum python to 3.7. (#938)
Browse files Browse the repository at this point in the history
Python 3.6 has been EOL for almost a year.
  • Loading branch information
jelmer authored Nov 29, 2022
1 parent bdba2fb commit fbf84bd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/docs/reference/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit fbf84bd

Please sign in to comment.