Skip to content

Commit 9c5ea7e

Browse files
committed
Configure support & tests for Python 3.9
1 parent 655a7c1 commit 9c5ea7e

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.travis.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ cache:
99
- node_modules
1010
jobs:
1111
include:
12-
- env: PYVER=py36
13-
python: 3.6
14-
- env: PYVER=py37
15-
python: 3.7
16-
- env: PYVER=py38
17-
python: 3.8
12+
- python: 3.6
13+
env: PYVER=py36
14+
- python: 3.7
15+
env: PYVER=py37
16+
- python: 3.8
17+
env: PYVER=py38
18+
- python: 3.9
19+
env: PYVER=py39
1820
- python: 3.8
1921
install:
2022
- pip install poetry

docs/getting-started.md

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

1818
- Django 2.2.x, 3.0.x, 3.1.x, 3.2.x (experimental)
19-
- Python 3.6, 3.7, 3.8
19+
- Python 3.6, 3.7, 3.8, 3.9
2020
- Django Templates only, no Jinja support
2121

2222
## Configuration

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.6",
2020
"Programming Language :: Python :: 3.7",
2121
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
2223
"Framework :: Django",
2324
"Framework :: Django :: 2.2",
2425
"Framework :: Django :: 3.0",

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}-dj{22,30,31,master}, lint
2+
envlist = py{36,37,38,39}-dj{22,30,31,master}, lint
33
skipsdist = true
44

55
[testenv]

0 commit comments

Comments
 (0)