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

@ -1,12 +1,13 @@
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
install:
- pip install six
- pip install pycrypto
- pip install chardet
script:
nosetests --nologcapture
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install six
- pip install pycryptodome
- pip install chardet
script:
nosetests --nologcapture

View File

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

View File

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