Skip to content

Commit f0c8615

Browse files
committed
Drop Python 3.4 support
It was EOL'd in March and the new version of requests no longer supports it.
1 parent b58f060 commit f0c8615

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ matrix:
44
include:
55
- python: 2.7
66
dist: trusty
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-
2.9.1
6+
2.10.0
77
++++++++++++++++++
88

9+
* Python 3.3 and 3.4 are no longer supported.
910
* Updated documentation of anonymizer attributes - ``is_anonymous_vpn`` and
1011
``is_hosting_provider`` - to be more descriptive.
1112

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ correction, please `contact MaxMind support
385385
Requirements
386386
------------
387387

388-
This code requires Python 2.7+ or 3.3+. Older versions are not supported.
388+
This code requires Python 2.7+ or 3.5+. Older versions are not supported.
389389
This library has been tested with CPython and PyPy.
390390

391391
The Requests HTTP library is also required. See

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
package_data={'': ['LICENSE']},
2525
package_dir={'geoip2': 'geoip2'},
2626
include_package_data=True,
27-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
27+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
2828
install_requires=requirements,
2929
extras_require={':python_version=="2.7"': ['ipaddress']},
3030
tests_require=['requests_mock>=0.5'],
@@ -38,10 +38,9 @@
3838
'License :: OSI Approved :: Apache Software License',
3939
'Programming Language :: Python :: 2.7',
4040
'Programming Language :: Python :: 3',
41-
'Programming Language :: Python :: 3.3',
42-
'Programming Language :: Python :: 3.4',
4341
'Programming Language :: Python :: 3.5',
4442
'Programming Language :: Python :: 3.6',
43+
'Programming Language :: Python :: 3.7',
4544
'Programming Language :: Python',
4645
'Topic :: Internet :: Proxy Servers',
4746
'Topic :: Internet',

0 commit comments

Comments
 (0)