Skip to content

Commit

Permalink
Please replace pycrypto with pycryptodome (#63)
Browse files Browse the repository at this point in the history
* Enable 3.6 and replace pycrypto with cryptodome

* Upgrade version number
  • Loading branch information
mpasternak authored and goulu committed May 29, 2017
1 parent 4bc0a0c commit fe21725
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
25 changes: 13 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion pdfminer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# -*- coding: utf-8 -*-
__version__ = '20170419'
__version__ = '20170510'

if __name__ == '__main__':
print (__version__)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pdfminer import __version__
import sys

requires = ['six', 'pycrypto']
requires = ['six', 'pycryptodome']
if sys.version_info >= (3, 0):
requires.append('chardet')

Expand Down

0 comments on commit fe21725

Please sign in to comment.