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
Installation of Bohr takes a lot of time. This especially affects CI since it is run often. The solution is to install some dependencies on demand.
This could be done with the requires_extra functionality of setuptools. For example:
requires_extra
pip install 'bohr[classifiers]'
pip install 'bohr[test]'
The text was updated successfully, but these errors were encountered:
Related to #155, but there it's about external tools run by heuristics. This issue, however, is about python libs used by the framework
Sorry, something went wrong.
No branches or pull requests
Installation of Bohr takes a lot of time. This especially affects CI since it is run often. The solution is to install some dependencies on demand.
This could be done with the
requires_extra
functionality of setuptools. For example:pip install 'bohr[classifiers]'
would install transformers library, which is not installed by default;pip install 'bohr[test]'
would only be needed for development purposes to install dependencies to run tests.The text was updated successfully, but these errors were encountered: