Skip to content

Commit 1e8a2b6

Browse files
committed
Merge pull request #33 from tacaswell/api_drop_2.6
API: drop py2.6 support
2 parents 2ca0e6f + e9d95e3 commit 1e8a2b6

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

cycler.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,7 @@ def by_key(self):
367367
# and if we care.
368368

369369
keys = self.keys
370-
# change this to dict comprehension when drop 2.6
371-
out = dict((k, list()) for k in keys)
370+
out = {k: list() for k in keys}
372371

373372
for d in self:
374373
for k in keys:

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
license="BSD",
1313
classifiers=['Development Status :: 4 - Beta',
1414
'Programming Language :: Python :: 2',
15-
'Programming Language :: Python :: 2.6',
1615
'Programming Language :: Python :: 2.7',
1716
'Programming Language :: Python :: 3',
1817
'Programming Language :: Python :: 3.3',

0 commit comments

Comments
 (0)