The versions of the packages in requirements.txt are fixed with == .
This leads to the replacement of current versions of this packages with old ones upon installation of newspaper with pip install newspaper.
I would plead for using >= syntax for all required packages unless there is an important reason to use a specific version on single requirements. An nice example requirements.txt can be found here: https://github.com/scikit-image/scikit-image/blob/master/requirements.txt
The versions of the packages in requirements.txt are fixed with
==.This leads to the replacement of current versions of this packages with old ones upon installation of newspaper with
pip install newspaper.I would plead for using
>=syntax for all required packages unless there is an important reason to use a specific version on single requirements. An nice example requirements.txt can be found here: https://github.com/scikit-image/scikit-image/blob/master/requirements.txt