Skip to content

Commit

Permalink
Merge pull request #34 from peopledoc/support-py38
Browse files Browse the repository at this point in the history
Add support to Python 3.8
  • Loading branch information
brunobord committed Nov 27, 2019
2 parents 18dc91a + b7d686d commit 17c53bd
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ python:
- 3.5
- 3.6
- 3.7
- 3.8

matrix:
fast_finish: true
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## master (unreleased)

- Confirm support for Django 2.2
- Add Python 3.8 support (#34).

## 1.4.0 (2018-12-17)

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ your RAM.

Tested with all the combinations of:

* Python: 2.7, 3.5, 3.6, 3.7
* Python: 2.7, 3.5, 3.6, 3.7, 3.8
* Django: 1.11, 2, 2.1, 2.2, master


Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def namespace_packages(project_name):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'License :: OSI Approved :: MIT License',
Expand Down
9 changes: 7 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
envlist =
py{27,35}-flake8,
py{27,35,36}-django111,
py{35,36,37}-django{20,21,22}
py{36,37}-djangomaster
py{35,36,37,38}-django{20,21,22}
py{36,37,38}-djangomaster

[testenv]
basepython =
py27: python2.7
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
usedevelop = True
deps =
django111: Django>=1.11,<2.0
Expand All @@ -29,13 +30,17 @@ python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38

[testenv:py36-djangomaster]
ignore_outcome=true

[testenv:py37-djangomaster]
ignore_outcome=true

[testenv:py38-djangomaster]
ignore_outcome=true

[testenv:py27-flake8]
commands = flake8 chunkator
deps = flake8
Expand Down

0 comments on commit 17c53bd

Please sign in to comment.