Skip to content

Commit

Permalink
Added QA for py3.7 and Django 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Apr 6, 2019
1 parent b2606b3 commit 3d6bf5e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
dist: xenial

language: python

python:
- 3.7
- 3.6
- 3.5

env:
- DJANGO="Django>=2.2,<2.3"
- DJANGO="Django>=2.1,<2.2"
- DJANGO="Django>=2.0,<2.1"
- DJANGO="Django>=1.11,<1.12"
Expand Down
2 changes: 2 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[pytest]
addopts = --pyargs siteprefs
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@ def get_version():
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{35,36}-django{18,19,110,111,200,210}
py{35,36,37}-django{18,19,110,111,200,210,220}

install_command = pip install {opts} {packages}
skip_missing_interpreters = True
Expand All @@ -15,3 +15,4 @@ deps =
django111: Django>=1.11,<1.12
django200: Django>=2.0,<2.1
django210: Django>=2.1,<2.2
django220: Django>=2.2,<2.3

0 comments on commit 3d6bf5e

Please sign in to comment.