Skip to content

Commit c128a30

Browse files
committed
Drop support for EOL Python 2.7 and 3.4
1 parent 7773b0d commit c128a30

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

cycler.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@
4747
from operator import mul, add
4848
import sys
4949

50-
if sys.version_info < (3,):
51-
from itertools import izip as zip
52-
5350
__version__ = '0.10.0'
5451

5552

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@
272272
# If true, do not generate a @detailmenu in the "Top" node's menu.
273273
# texinfo_no_detailmenu = False
274274

275-
intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),
275+
intersphinx_mapping = {'python': ('https://docs.python.org/3', None),
276276
'matplotlb': ('https://matplotlib.org', None)}
277277

278278
# ################ numpydoc config ####################

test_cycler.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77

88
from cycler import cycler, Cycler, concat
99

10-
if sys.version_info < (3,):
11-
from itertools import izip as zip
12-
range = xrange # noqa
13-
str = unicode # noqa
14-
1510

1611
def _cycler_helper(c, length, keys, values):
1712
assert len(c) == length

0 commit comments

Comments
 (0)