Skip to content

Commit

Permalink
Fix Py2.6 dependencies, again.
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardomurri committed Nov 26, 2018
1 parent eb592c2 commit 04ae607
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -75,9 +75,10 @@ def run_tests(self):
'argparse',
'lockfile==0.11.0',
# Paramiko depends on PyNaCl which depends on `pycparser`,
# which dropped support for Py2.6 in 2.19 (so fix it and do
# this before installing Paramiko)
'pycparser==2.18',
# which dropped support for Py2.6 in 2.19 but we need to pin
# `PyNaCl` itself: attempts to pin `pycparser` result in
# failure of installation attempts on Travis CI...
'PyNaCl==1.0.1',
# Paramiko ceased support for Python 2.6 in version 2.4.0
'paramiko<2.4', 'pycrypto',
# parsedatetime officially dropped supprt for Py 2.6 in version 1.0
Expand Down

0 comments on commit 04ae607

Please sign in to comment.