Skip to content

Commit b0d3143

Browse files
committed
TST: test with Python 3.7
1 parent 0994995 commit b0d3143

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
sudo: false
22

3+
dist: trusty
4+
35
language: python
46

57
python:
@@ -15,5 +17,11 @@ install:
1517

1618
script: tox
1719

20+
matrix:
21+
include:
22+
- python: "3.7"
23+
dist: xenial
24+
sudo: true
25+
1826
after_success:
1927
- codecov

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ magics in Jupyter notebooks.
1414
pip install jupyter_spaces
1515
```
1616

17-
`jupyter_spaces` supports Python versions `3.4`, `3.5` and `3.6`.
17+
`jupyter_spaces` supports Python versions `3.4`, `3.5`, `3.6` and `3.7`.
1818

1919
## Usage
2020

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'Programming Language :: Python :: 3.4',
2020
'Programming Language :: Python :: 3.5',
2121
'Programming Language :: Python :: 3.6',
22+
'Programming Language :: Python :: 3.7',
2223
]
2324
KEYWORDS = 'jupyter ipython magic extension namespace'
2425

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py34,py35,py36
2+
envlist = py34,py35,py36,py37
33

44
[testenv]
55
deps = -rdev-requirements.txt

0 commit comments

Comments
 (0)