Please replace pycrypto with pycryptodome (#63)

* Enable 3.6 and replace pycrypto with cryptodome

* Upgrade version number
pull/69/head^2
Michał Pasternak 2017-05-29 09:04:38 +02:00 committed by Goulu
parent 4bc0a0c105
commit fe21725f07
3 changed files with 15 additions and 14 deletions

View File

@ -4,9 +4,10 @@ python:
- "2.7" - "2.7"
- "3.4" - "3.4"
- "3.5" - "3.5"
- "3.6"
install: install:
- pip install six - pip install six
- pip install pycrypto - pip install pycryptodome
- pip install chardet - pip install chardet
script: script:
nosetests --nologcapture nosetests --nologcapture

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
__version__ = '20170419' __version__ = '20170510'
if __name__ == '__main__': if __name__ == '__main__':
print (__version__) print (__version__)

View File

@ -3,7 +3,7 @@ from setuptools import setup
from pdfminer import __version__ from pdfminer import __version__
import sys import sys
requires = ['six', 'pycrypto'] requires = ['six', 'pycryptodome']
if sys.version_info >= (3, 0): if sys.version_info >= (3, 0):
requires.append('chardet') requires.append('chardet')