Skip to content
This repository was archived by the owner on Nov 19, 2023. It is now read-only.

Commit 739c948

Browse files
committed
chore: Drop Python 3.6 support
1 parent 71567de commit 739c948

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
python-version: [ "3.6", "3.7", "3.8" , "3.9", "3.10" ]
42+
python-version: [ "3.7", "3.8" , "3.9", "3.10" ]
4343
django-version: [ "2.2", "3.0", "3.1", "3.2" ]
4444
steps:
4545
- uses: actions/checkout@v2

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repos:
3131
rev: v2.29.1
3232
hooks:
3333
- id: pyupgrade
34-
args: ["--py36-plus"]
34+
args: ["--py36-plus", "--py37-plus"]
3535
- repo: https://github.com/pycqa/isort
3636
rev: 5.10.1
3737
hooks:

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ classifiers = [
2020
"Natural Language :: English",
2121
"Operating System :: OS Independent",
2222
"Programming Language :: Python",
23-
"Programming Language :: Python :: 3.6",
2423
"Programming Language :: Python :: 3.7",
2524
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)