Skip to content

Commit

Permalink
Add new Python versions to build matrix
Browse files Browse the repository at this point in the history
Also update package metadata.

Fixes #1439
  • Loading branch information
berkerpeksag committed Jan 22, 2017
1 parent e9a00b7 commit 146a769
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
26 changes: 19 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
sudo: false
language: python
python: 3.5
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
matrix:
include:
- python: 2.6
env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.6-dev
env: TOXENV=py36-dev
- python: nightly
env: TOXENV=py37
allow_failures:
- env: TOXENV=py36-dev
- env: TOXENV=py37
install: pip install tox
script: tox
cache:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py34, py35, pypy
envlist = py26, py27, py34, py35, py36, py36-dev, py37, pypy
skipsdist = True

[testenv]
Expand All @@ -8,5 +8,5 @@ commands = py.test {posargs:tests/} --assert=plain
deps =
-rrequirements_test.txt
py26: unittest2
py2{6,7},pypy: mock
py3{3,4}: aiohttp
py{26,27},pypy: mock
py{34,35,36,36-dev,37}: aiohttp

0 comments on commit 146a769

Please sign in to comment.