Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade test matrix to include Python 3.7 and Django 2.1 #245

Merged
merged 1 commit into from
Jan 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,25 @@ matrix:

- python: 3.5
env: TOX_ENV=py35-django20
- python: 3.5
env: TOX_ENV=py35-django21

- python: 3.6
env: TOX_ENV=flake8
- python: 3.6
env: TOX_ENV=py36-django20
- python: 3.6
env: TOX_ENV=py36-django21

- python: 3.7
dist: xenial
env: TOX_ENV=flake8
- python: 3.7
dist: xenial
env: TOX_ENV=py37-django20
- python: 3.7
dist: xenial
env: TOX_ENV=py37-django21
addons:
apt:
packages:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This document describes changes between each past release.
2.9.0 (unreleased)
==================

- Nothing changed yet.
- Upgrade test matrix to Python 3.7 and Django 2.1


2.8.0 (2019-01-15)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ def read_file(filename):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[tox]
envlist =
py27-django{111},
py34-django{111},
py35-django{2},
py36-django{2},
py35-django{20,21},
py36-django{20,21},
py37-django{20,21},
flake8

[testenv]
deps =
django111: Django>=1.11,<2.0
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
coverage
mock
pyenchant
Expand Down