Fixed setup.py syntax error

This commit is contained in:
James R. Barlow
2018-03-30 14:00:36 -07:00
parent 6dc25ddc6e
commit 158f902c3b
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -10,6 +10,8 @@ v6.1.2
- Upgrade to PyMuPDF v1.12.5 which includes a more complete fix to #239.
- Add ``defusedxml`` dependency.
v6.1.1
------
+2 -2
View File
@@ -234,8 +234,8 @@ setup(
],
python_requires=' >= 3.5',
setup_requires=[
'cffi >= 1.9.1', # to build the leptonica module
'pytest-runner' # to enable python setup.py test
'cffi >= 1.9.1', # to build the leptonica module
'pytest-runner', # to enable python setup.py test
'setuptools_scm', # so that version will work
],
use_scm_version={'version_scheme': 'post-release'},