From 596ea81a34d8029d413b2f86f0232a216ff6f5b6 Mon Sep 17 00:00:00 2001 From: "Fabien C. Y. Benureau" Date: Wed, 21 Feb 2018 14:23:47 +0900 Subject: [PATCH] fix dependency to bibtexparser Under certain circumstances, when installing bibtexparser 1.0.1 release in develop mode, it can be recognized as bibtexparser 1.0 by the pkg_resource module, preventing pubs to execute. This is obviously very bad. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5559148..62a9d3f 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( ], }, - install_requires=['pyyaml', 'bibtexparser>=1.0.1', 'python-dateutil', 'requests', + install_requires=['pyyaml', 'bibtexparser>=1.0', 'python-dateutil', 'requests', 'configobj', 'beautifulsoup4'], # to be made optional? tests_require=['pyfakefs>=2.7'],