Fix requirements.txt problem

This commit is contained in:
James R. Barlow
2015-08-23 12:30:40 -07:00
parent fd876d5e4e
commit aab08bfcc7
4 changed files with 8 additions and 2 deletions
+2
View File
@@ -1 +1,3 @@
recursive-exclude tests/output *
include requirements.txt
include test_requirements.txt
+4
View File
@@ -67,6 +67,10 @@ Changes
Release candidates
------------------
- rc7:
- fix error when installing direct from pip, "no such file 'requirements.txt'"
- rc6:
- dropped libxml2 (Python lxml) since Python 3's internal XML parser is sufficient
+1 -1
View File
@@ -103,7 +103,7 @@ check_pil_encoder('zlib', 'PNG')
parser = cmdline.get_argparse(
prog="ocrmypdf",
description="Generate searchable PDF file from an image-only PDF file.",
version='3.0rc6',
version='3.0rc7',
fromfile_prefix_chars='@',
ignored_args=[
'touch_files_only', 'recreate_database', 'checksum_file_name',
+1 -1
View File
@@ -179,7 +179,7 @@ tests_require = open('test_requirements.txt').read().splitlines()
setup(
name='ocrmypdf',
version='3.0rc6', # also update: release notes, main.py
version='3.0rc7', # also update: release notes, main.py
description='OCRmyPDF adds an OCR text layer to scanned PDF files, allowing them to be searched',
url='https://github.com/fritz-hh/OCRmyPDF',
author='James. R. Barlow',