Skip to content

Commit

Permalink
Add support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jan 31, 2019
1 parent b573a02 commit 4a3e428
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ python:
- "3.5"
- "3.6"
- "pypy"
# Enable 3.7 without globally enabling dist: xenial for other build jobs
matrix:
include:
- python: "3.7"
dist: xenial
before_install:
- pip install codecov
install:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/env python

import os
import sys
import io

from setuptools import setup, find_packages
Expand Down Expand Up @@ -32,6 +30,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,py34,py35,py36,pypy
envlist = py26,py27,py33,py34,py35,py36,py37,pypy

[testenv]
commands = nosetests
Expand Down

0 comments on commit 4a3e428

Please sign in to comment.