Skip to content

Commit 4874851

Browse files
authored
Merge pull request #136 from badcure/remove_py34
Removing Python 3.4 from testing. It is no longer supported.
2 parents 75840e0 + b284191 commit 4874851

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ sudo: false
33
matrix:
44
include:
55
- python: 2.7
6-
- python: 3.4
76
- python: 3.5
87
- python: 3.6
98
- python: 3.7
@@ -14,12 +13,12 @@ matrix:
1413
allow_failures:
1514
- python: nightly
1615
before_install:
17-
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install 'coverage<4.0.0'; fi
1816
- pip install codecov
1917
- pip install 'py>=1.5.0'
2018
install:
21-
- pip install -e .
19+
- pip install -r requirements.txt
2220
- pip install -r requirements_dev.txt
21+
- pip install -e .
2322
script:
2423
- python setup.py test
2524
after_success:

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ def run_tests(self):
7474
"Topic :: Software Development :: Libraries :: Python Modules",
7575
"Operating System :: OS Independent",
7676
'Programming Language :: Python :: 2.7',
77-
'Programming Language :: Python :: 3.4',
7877
'Programming Language :: Python :: 3.5',
7978
'Programming Language :: Python :: 3.6',
8079
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)