Dan Hein
Results
2
comments of
Dan Hein
Hey @mrbiggred, I believe Nickie did that just to mark the task as Ready for Deployment. The changes attached should fix the issue described. I think that was mainly for...
``` from pkg_resources import parse_requirements with open(r'/Users/danhein/PycharmProjects/spaCy/requirements.txt') as f: install_reqs = list(parse_requirements(f.readlines())) ``` This creates a generator that generates Requirements objects. These objects have all of the details we need...