Skip to content

Commit 23da8d5

Browse files
committed
TST: test with Python 3.8
1 parent a2f24c1 commit 23da8d5

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.travis.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
sudo: false
1+
os: linux
22

3-
dist: trusty
3+
dist: xenial
44

55
language: python
66

77
python:
88
- "3.5"
99
- "3.6"
10+
- "3.7"
11+
- "3.8"
1012

1113
before_install:
1214
- pip install codecov
@@ -16,11 +18,5 @@ install:
1618

1719
script: tox
1820

19-
matrix:
20-
include:
21-
- python: "3.7"
22-
dist: xenial
23-
sudo: true
24-
2521
after_success:
2622
- 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.5`, `3.6` and `3.7`.
17+
`jupyter_spaces` supports Python versions `3.5`, `3.6`, `3.7` and `3.8`.
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.5',
2020
'Programming Language :: Python :: 3.6',
2121
'Programming Language :: Python :: 3.7',
22+
'Programming Language :: Python :: 3.8',
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 = py35,py36,py37
2+
envlist = py35,py36,py37,py38
33

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

0 commit comments

Comments
 (0)