Skip to content

Commit de11190

Browse files
committed
No longer support Python 3.3 and 3.4
1 parent b14d7c9 commit de11190

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ matrix:
44
- python: 2.7
55
dist: trusty
66
env: RUN_SNYK=1
7-
- python: 3.3
8-
dist: trusty
9-
- python: 3.4
10-
dist: trusty
117
- python: 3.5
128
dist: trusty
139
- python: 3.6

HISTORY.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
History
44
-------
55

6-
1.4.2
6+
1.5.0
77
++++++++++++++++++
88

9+
* Python 3.3 and 3.4 are no longer supported.
910
* The extension source directory was moved to prevent an ``ImportWarning``
1011
when importing the module on Python 2 with ``-Wdefault`` set. Reported by
1112
David Szotten and Craig de Stigter. GitHub #31.

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ def run_setup(with_cext):
129129
packages=find_packages('.'),
130130
package_data={'': ['LICENSE']},
131131
package_dir={'maxminddb': 'maxminddb'},
132+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
132133
include_package_data=True,
133134
install_requires=requirements,
134135
tests_require=['nose'],
@@ -143,8 +144,6 @@ def run_setup(with_cext):
143144
'License :: OSI Approved :: Apache Software License',
144145
'Programming Language :: Python :: 2.7',
145146
'Programming Language :: Python :: 3',
146-
'Programming Language :: Python :: 3.3',
147-
'Programming Language :: Python :: 3.4',
148147
'Programming Language :: Python :: 3.5',
149148
'Programming Language :: Python :: 3.6',
150149
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)