Skip to content

Commit a186ba8

Browse files
committed
DEPS: Drop Python 3.4 support
Closes gh-15251.
1 parent ce4eef3 commit a186ba8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

doc/source/whatsnew/v0.21.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Other Enhancements
3434
Backwards incompatible API changes
3535
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3636

37-
37+
- Support has been dropped for Python 3.4 (:issue:`15251`)
3838

3939
.. _whatsnew_0210.api:
4040

pandas/compat/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Key items to import for 2/3 compatible code:
88
* iterators: range(), map(), zip(), filter(), reduce()
99
* lists: lrange(), lmap(), lzip(), lfilter()
10-
* unicode: u() [u"" is a syntax error in Python 3.0-3.2]
10+
* unicode: u() [no unicode builtin in Python 3]
1111
* longs: long (int in Python 3)
1212
* callable
1313
* iterable method compatibility: iteritems, iterkeys, itervalues
@@ -110,7 +110,7 @@ def signature(f):
110110
unichr = chr
111111

112112
# This was introduced in Python 3.3, but we don't support
113-
# Python 3.x < 3.4, so checking PY3 is safe.
113+
# Python 3.x < 3.5, so checking PY3 is safe.
114114
FileNotFoundError = FileNotFoundError
115115

116116
# list-producing versions of the major Python iterating functions

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,6 @@ def build_extensions(self):
246246
'Programming Language :: Python :: 2',
247247
'Programming Language :: Python :: 3',
248248
'Programming Language :: Python :: 2.7',
249-
'Programming Language :: Python :: 3.4',
250249
'Programming Language :: Python :: 3.5',
251250
'Programming Language :: Python :: 3.6',
252251
'Programming Language :: Cython',

0 commit comments

Comments
 (0)