Lock packages python dependencies to their current major version

- This may help reproduce test failures seen on Github locally
- Interfaces shouldn't break within bounds of minor version updates of
  dependent packages, assuming their following semantic versioning
This commit is contained in:
Debanjum Singh Solanky
2021-10-02 20:34:07 -07:00
parent 9dcffe3e8e
commit d896664fdb

View File

@@ -3,13 +3,13 @@ channels:
- conda-forge - conda-forge
dependencies: dependencies:
- python=3.* - python=3.*
- numpy=1.21.* - numpy=1.*
- pytorch - pytorch=1.*
- transformers - transformers=4.*
- sentence-transformers - sentence-transformers=2.0.0
- fastapi - fastapi=0.*
- uvicorn - uvicorn=0.*
- pyyaml - pyyaml=5.*
- pytest - pytest=6.*
- pillow - pillow=8.*
- torchvision - torchvision=0.*