Skip to content

Commit 934ab13

Browse files
authored
Merge pull request #3 from Echelon9/feature/python3.7
Improvements to Python 3.7 and testing infrastructure Thanks for your support!
2 parents 6ea7d8f + 0cc2c78 commit 934ab13

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
language: python
2+
# Existing Python versions
23
python:
34
- "2.7"
5+
- "3.4"
46
- "3.5"
57
- "3.6"
8+
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
9+
matrix:
10+
include:
11+
- python: "3.7"
12+
dist: xenial
13+
sudo: required
614
before_install: pip install pipenv
715
install: pipenv install
816
script:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'six'
2020
],
2121
classifiers=(
22+
"Programming Language :: Python :: 3.7",
2223
"Programming Language :: Python :: 3.6",
2324
"Programming Language :: Python :: 3.5",
2425
"Programming Language :: Python :: 3.4",

0 commit comments

Comments
 (0)