Skip to content

Commit 17c53bd

Browse files
authored
Merge pull request #34 from peopledoc/support-py38
Add support to Python 3.8
2 parents 18dc91a + b7d686d commit 17c53bd

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ python:
77
- 3.5
88
- 3.6
99
- 3.7
10+
- 3.8
1011

1112
matrix:
1213
fast_finish: true

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## master (unreleased)
44

55
- Confirm support for Django 2.2
6+
- Add Python 3.8 support (#34).
67

78
## 1.4.0 (2018-12-17)
89

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ your RAM.
1010

1111
Tested with all the combinations of:
1212

13-
* Python: 2.7, 3.5, 3.6, 3.7
13+
* Python: 2.7, 3.5, 3.6, 3.7, 3.8
1414
* Django: 1.11, 2, 2.1, 2.2, master
1515

1616

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def namespace_packages(project_name):
7878
'Programming Language :: Python :: 3.5',
7979
'Programming Language :: Python :: 3.6',
8080
'Programming Language :: Python :: 3.7',
81+
'Programming Language :: Python :: 3.8',
8182
'Topic :: Internet :: WWW/HTTP',
8283
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
8384
'License :: OSI Approved :: MIT License',

tox.ini

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
envlist =
33
py{27,35}-flake8,
44
py{27,35,36}-django111,
5-
py{35,36,37}-django{20,21,22}
6-
py{36,37}-djangomaster
5+
py{35,36,37,38}-django{20,21,22}
6+
py{36,37,38}-djangomaster
77

88
[testenv]
99
basepython =
1010
py27: python2.7
1111
py35: python3.5
1212
py36: python3.6
1313
py37: python3.7
14+
py38: python3.8
1415
usedevelop = True
1516
deps =
1617
django111: Django>=1.11,<2.0
@@ -29,13 +30,17 @@ python =
2930
3.5: py35
3031
3.6: py36
3132
3.7: py37
33+
3.8: py38
3234

3335
[testenv:py36-djangomaster]
3436
ignore_outcome=true
3537

3638
[testenv:py37-djangomaster]
3739
ignore_outcome=true
3840

41+
[testenv:py38-djangomaster]
42+
ignore_outcome=true
43+
3944
[testenv:py27-flake8]
4045
commands = flake8 chunkator
4146
deps = flake8

0 commit comments

Comments
 (0)