Skip to content

Commit

Permalink
Merge pull request #127 from jazzband/drop-py37
Browse files Browse the repository at this point in the history
Drop python 3.7
  • Loading branch information
shimizukawa authored Jun 16, 2024
2 parents f58b274 + fa1be0b commit ece65b6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,8 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10']
django-version: ['3.2', '4.0']
exclude:
- django-version: '4.0'
python-version: '3.7'
include:
- django-version: 'main'
python-version: '3.9'
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Incompatible Changes:
Features:

* #83 Drop Python-3.6 support.
* Drop Python-3.7 support.
* #83 Drop Django-2.2 support.

Bug Fixes:
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.7, 3.8, 3.9, 3.10
* Python-3.8, 3.9, 3.10
* Django-3.2, 4.0

License
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dynamic = ["version"]
description = "Redshift database backend for Django"
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.7, <4"
requires-python = ">=3.8, <4"
authors = [
{ name = "shimizukawa", email = "[email protected]" },
]
Expand All @@ -26,7 +26,6 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
[tox]
envlist =
py37-dj32
py{38,39,310}-dj{32,40,main}
lint
check
skipsdist = True

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310, lint, check
Expand Down

0 comments on commit ece65b6

Please sign in to comment.