Skip to content

Commit

Permalink
Change dependency from pycrypto to pycryptodome.
Browse files Browse the repository at this point in the history
  • Loading branch information
nueverest committed May 28, 2017
1 parent 7403dff commit f49e28a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pycrypto
pycryptodome
six
future
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os

import jose

import platform

from setuptools import setup


Expand All @@ -25,10 +22,7 @@ def get_packages(package):


def get_install_requires():
if platform.python_implementation() == 'PyPy':
crypto_lib = 'pycryptodome >=3.3.1, <3.4.0'
else:
crypto_lib = 'pycrypto >=2.6.0, <2.7.0'
crypto_lib = 'pycryptodome >=3.3.1, <3.4.0'
return [
crypto_lib,
'six <2.0',
Expand Down

0 comments on commit f49e28a

Please sign in to comment.