-
Notifications
You must be signed in to change notification settings - Fork 0
#253: Made dependencies optional in file pyproject.toml
#254
New issue
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
#253: Made dependencies optional in file pyproject.toml
#254
Conversation
fixed syntax in file pyproject.toml, added user guide, re-locked dependencies
Made all dependencies optional again
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
|
|
||
| - name: Install All Optional Dependencies (aka. "extras") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PTB currently only offers action python-environment to be called with a list of space-separated extras.
Proposal: Add support for requesting to install "all extras".
pyproject.toml
Outdated
| ibis-framework = [ "ibis-framework [exasol] >=9.1.0, <10" ] | ||
| GitPython = [ "GitPython >=2.1.0" ] | ||
| yaspin = [ "yaspin >=3.1.0, <4" ] | ||
| exasol-text-ai-extension = [ "exasol-text-ai-extension >=0.1.0, <2.0.0" ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its own category
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Before we can do this, we need to move exasol.ai.text.impl.utils.transformers_utils.download_transformers_model to transformers extension. For the moment, we put it together with transformer-extensions into one category.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added dependency for win32 grouped optional dependencies into categories
Added optional dependency bucketfs
Added optional dependency ibis
Added optional dependency sqlalchemy
|



Closes #253