Skip to content

Commit

Permalink
drop support py36 and py37
Browse files Browse the repository at this point in the history
  • Loading branch information
shimizukawa committed Mar 7, 2021
1 parent 5a417b2 commit d17b7f7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGES
=======

3.0.0 (unreleased)
------------------

Features:

* Drop Python 3.6 and 3.7 support; Django 4.0 drop these support and django-redshift-backend only supports latest two python versions.

2.0.1 (2021/03/07)
------------------

Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Support versions

This product is tested with:

* Python-3.6, 3.7, 3.8, 3.9
* Python-3.8, 3.9
* Django-2.2, 3.0, 3.1

License
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,12 @@ def read(filename):
'psycopg2-binary': ['psycopg2-binary'],
'psycopg2': ['psycopg2'],
},
python_requires='>=3.6, <4',
python_requires='>=3.6, <4', # <3.8 is not supported but not ignored
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: Django',
Expand Down
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
[tox]
envlist =
py{36,37,38,39}-dj{22,30,31,dev}
py{38,39}-dj{22,30,31,dev}
flake8
check
skipsdist = True

[gh-actions]
python =
3.6: py36, flake8, check
3.7: py37
3.8: py38
3.8: py38, flake8, check
3.9: py39

[gh-actions:env]
Expand Down

0 comments on commit d17b7f7

Please sign in to comment.