1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Sean Whitton <spwhitton@spwhitton.name>
Date: Thu, 15 Aug 2019 18:12:41 +0100
Subject: drop pybind11 from setup.py
We are successfully providing pybind11 as a build-dep but ocrmypdf's
setup.py fails to detect it for some reason.
---
setup.py | 1 -
1 file changed, 1 deletion(-)
--- a/setup.py
+++ b/setup.py
@@ -176,7 +176,6 @@ if __name__ == '__main__': # for mp_com
setup_requires=[
'setuptools_scm',
'setuptools_scm_git_archive',
- 'pybind11 >= 2.4.3, < 3',
],
use_scm_version=True,
tests_require=tests_require,
|