Skip to content

Commit 5de91d2

Browse files
committed
Remove Python 3.7 from both tox and travis config files. Apparently the Travis + Tox combo doesn't get along very well with Python 3.7 just yet
1 parent 49413ac commit 5de91d2

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
language: python
22
python:
33
- '3.6'
4-
- '3.7-dev'
54
install:
65
- pip install pipenv
7-
- pipenv install --dev
86
- pip install -U tox coveralls
97

108
script:

tox.ini

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

44
[testenv]
55
commands =
@@ -17,15 +17,6 @@ whitelist_externals = /bin/bash
1717
[testenv:py36]
1818
basepython = python3.6
1919
deps = pipenv
20-
commands=
21-
pipenv install --dev --ignore-pipfile
22-
python setup.py test
23-
setenv=
24-
LC_ALL=en_GB.UTF-8
25-
LANG=en_GB.UTF-8
26-
[testenv:py37]
27-
basepython = python3.7
28-
deps = pipenv
2920
commands=
3021
pipenv install --dev --ignore-pipfile
3122
python setup.py test

0 commit comments

Comments
 (0)