Skip to content

Commit

Permalink
update: pyPdf to PyPDF2 (fixes #11)
Browse files Browse the repository at this point in the history
  • Loading branch information
metaist committed May 2, 2014
1 parent 24981cf commit 8be13f0
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@
<arg value="install" />
<arg value="-r"/>
<arg value="requirements.txt"/>
<arg value="--allow-all-external"/>
<arg value="--allow-unverified"/>
<arg value="pyPDF"/>
</exec>
</target>

Expand Down
6 changes: 3 additions & 3 deletions pdfmerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
import os
import re

from pyPdf import PdfFileWriter, PdfFileReader
from PyPDF2 import PdfFileWriter, PdfFileReader

__author__ = 'The Metaist'
__copyright__ = 'Copyright 2013, Metaist'
__copyright__ = 'Copyright 2014, Metaist'
__email__ = '[email protected]'
__license__ = 'MIT'
__maintainer__ = 'The Metaist'
__status__ = 'Prototype'
__version__ = '0.0.4'
__version__ = '0.0.5'
__version_info__ = tuple(__version__.split('.'))

ERROR_PATH = 'ERROR: path not found: {0}'
Expand Down
Binary file added releases/pdfmerge-0.0.5-setup.exe
Binary file not shown.
Binary file added releases/pdfmerge-0.0.5.zip
Binary file not shown.
Binary file modified releases/pdfmerge-latest-setup.exe
Binary file not shown.
Binary file modified releases/pdfmerge-latest.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ nose>=1.2.1
pep8>=1.4.4
# py2exe>=0.6.9 # uncomment on Windows machines
pylint>=0.26.0
pyPdf>=1.13
PyPDF2>=1.21

0 comments on commit 8be13f0

Please sign in to comment.