We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chroma has several places where we manage python dependencies / requirements
At the top level of the project:
pyproject.toml
requirements.txt
requirements_dev.txt
For the thin python client:
A similar situation exists for the TypeScript client.
It's easy to miss adjusting these, for example when we need to pin or update a dependency as in #2360
We should unify these as much as possible, and add lint rules when they absolutely must be redundant.
The text was updated successfully, but these errors were encountered:
I think poetry can also help here
Sorry, something went wrong.
atroyn
Successfully merging a pull request may close this issue.
Chroma has several places where we manage python dependencies / requirements
At the top level of the project:
pyproject.toml
: https://github.com/chroma-core/chroma/blob/main/pyproject.tomlrequirements.txt
: https://github.com/chroma-core/chroma/blob/main/requirements.txtrequirements_dev.txt
: https://github.com/chroma-core/chroma/blob/main/requirements_dev.txtFor the thin python client:
pyproject.toml
: https://github.com/chroma-core/chroma/blob/main/clients/python/pyproject.tomlrequirements.txt
: https://github.com/chroma-core/chroma/blob/main/clients/python/requirements.txtrequirements_dev.txt
: https://github.com/chroma-core/chroma/blob/main/clients/python/requirements_dev.txtA similar situation exists for the TypeScript client.
It's easy to miss adjusting these, for example when we need to pin or update a dependency as in #2360
We should unify these as much as possible, and add lint rules when they absolutely must be redundant.
The text was updated successfully, but these errors were encountered: