Skip to content

Commit 189c85f

Browse files
committed
Remove Python 3.6 support
1 parent 014e5c1 commit 189c85f

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
strategy:
2424
matrix:
2525
include:
26-
- python: "3.6"
27-
toxenv: py36-dj22,py36-dj30,py36-dj31,py36-dj32
2826
- python: "3.7"
2927
toxenv: py37-dj22,py37-dj30,py37-dj31,py37-dj32
3028
- python: "3.8"

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ poetry add --dev django-pattern-library
1818
We support:
1919

2020
- Django 2.2.x, 3.0.x, 3.1.x, 3.2.x, 4.0.x (experimental)
21-
- Python 3.6, 3.7, 3.8, 3.9
21+
- Python 3.7, 3.8, 3.9
2222
- Django Templates only, no Jinja support
2323

2424
## Configuration

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ classifiers = [
1616
"License :: OSI Approved :: BSD License",
1717
"Operating System :: OS Independent",
1818
"Programming Language :: Python",
19-
"Programming Language :: Python :: 3.6",
2019
"Programming Language :: Python :: 3.7",
2120
"Programming Language :: Python :: 3.8",
2221
"Programming Language :: Python :: 3.9",
@@ -37,7 +36,7 @@ exclude = [
3736
]
3837

3938
[tool.poetry.dependencies]
40-
python = "^3.6"
39+
python = "^3.7"
4140
Django = ">=2.2,<4.0"
4241
PyYAML = ">=5.1,<7.0"
4342
Markdown = "^3.1"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39}-dj{22,30,31,32,main}, lint
2+
envlist = py{37,38,39}-dj{22,30,31,32,main}, lint
33
skipsdist = true
44

55
[testenv]

0 commit comments

Comments
 (0)