Fix requirements.txt for python3 dependency installation#16
Fix requirements.txt for python3 dependency installation#16kclejeune wants to merge 3 commits intopnpnpn:masterfrom
Conversation
pnpnpn
left a comment
There was a problem hiding this comment.
The biopython==1.76 and many other libraries are not needed.
Could you list the specific libraries you’re referring to? They may not be direct requirements for your codebase but if it shows up in pip freeze then it’s important to include as a dependency to avoid version incompatibilities. |
removed a few dependencies that were tied to my environment settings
|
I'd like to reiterate emphasize the importance of these "unnecessary" libraries - they are not dependencies of your codebase, but they are necessary in order to reproduce a working environment if dependencies are updated in the future. |
That makes sense. I noticed that this is using latest version of gensim. Does it work with the current code? I think there has been significant change to the gensim API since |
These dependencies work with all proposed changes on #15. I'll check if it works with the existing codebase and get back to you. |
The existing version of requirements.txt fails when trying to build packages with wheels. I manually installed packages and then used
pip freezeto create new versions.