deanmalmgren / textract

extract text from any document. no muss. no fuss.
http://textract.readthedocs.io
MIT License
3.84k stars 585 forks source link

textract 1.6.5 has a non-standard dependency specifier extract-msg<=0.29.* #489

Open SteveMwika opened 8 months ago

SteveMwika commented 8 months ago

Describe the bug DEPRECATION: textract 1.6.5 has a non-standard dependency specifier extract-msg<=0.29.*. pip 24.0 will enforce this behaviour change. A possible replacement is to upgrade to a newer version of textract or contact the author to suggest that they release a version with a conforming dependency specifiers. Discussion can be found at https://github.com/pypa/pip/issues/12063

extract-msg<=0.29.*

MarkCarbonell98 commented 8 months ago

I temporarily fixed this issue with

cd textract-1.6.5
sed -i requirements/python 's/\(<=.*\)\(\*\)/\10/'
python3 setup.py install 

With Python 3.11.6

MaxEtMoritz commented 8 months ago

duplicate of #476