Skip to content

Commit

Permalink
Added QA for py3.8 and Django 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Dec 7, 2019
1 parent fa68340 commit bb8da1b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ dist: xenial
language: python

python:
- 3.8
- 3.7
- 3.6
- 3.5

env:
- DJANGO="Django>=3.0,<3.1"
- DJANGO="Django>=2.2,<2.3"
- DJANGO="Django>=2.1,<2.2"
- DJANGO="Django>=2.0,<2.1"
Expand All @@ -20,6 +22,21 @@ install:

script: coverage run -a --source=yaturbo setup.py test

matrix:

exclude:

- python: 3.8
env: DJANGO="Django>=1.10,<1.11"

- python: 3.8
env: DJANGO="Django>=1.9,<1.10"

- python: 3.8
env: DJANGO="Django>=1.8.6,<1.9"

- python: 3.5
env: DJANGO="Django>=3.0,<3.1"

after_success:
coveralls
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def get_version():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: BSD License'
],
)
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# See http://tox.readthedocs.org/en/latest/examples.html for samples.
[tox]
envlist =
py{35,36,37}-django{18,19,110,111,20,21,22}
py{35}-django{18,19,110,111,20,21,22}
py{36,37,38}-django{18,19,110,111,20,21,22,30}

skip_missing_interpreters = True

Expand All @@ -19,3 +20,4 @@ deps =
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1

0 comments on commit bb8da1b

Please sign in to comment.