Skip to content

Commit a6658fa

Browse files
committed
Drop support for Python 3.4
See pypa/pip#5228, pypa/pip#5230 and pandas-dev/pandas#20697. But in the end, it was http://pandas.pydata.org/pandas-docs/stable/install.html: Python version support Officially Python 2.7, 3.5, and 3.6.
1 parent 3b6c8e3 commit a6658fa

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ matrix:
66
env: TOXENV=py27
77
- python: 2.7
88
env: TOXENV=py27-pandas
9-
- python: 3.4
10-
env: TOXENV=py34
11-
- python: 3.4
12-
env: TOXENV=py34-pandas
139
- python: 3.5
1410
env: TOXENV=py35
1511
- python: 3.5

setup.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@
33
from setuptools import setup
44
from sys import version_info
55

6-
if version_info < (3, 3):
7-
requirements = ["pathlib"]
8-
else:
9-
requirements = []
10-
116
setup(name="mpd_pydb",
127
author="Wieland Hoffmann",
138
author_email="themineo@gmail.com",
@@ -21,12 +16,12 @@
2116
"Natural Language :: English",
2217
"Operating System :: OS Independent",
2318
"Programming Language :: Python :: 2.7",
24-
"Programming Language :: Python :: 3.4"],
19+
"Programming Language :: Python :: 3.5",
20+
"Programming Language :: Python :: 3.6",],
2521
description="Module for reading an MPD database",
2622
long_description=open("README.rst").read(),
2723
setup_requires=["setuptools_scm", "pytest-runner"],
2824
use_scm_version={"write_to": "mpd_pydb/version.py"},
29-
install_requires=requirements,
3025
extras_require={
3126
'docs': ['sphinx']
3227
},

0 commit comments

Comments
 (0)