-
Notifications
You must be signed in to change notification settings - Fork 7
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
Import simplification & dev dependencies #51
Conversation
"SQLAlchemy[aiosqlite]~=2.0", # Match aviary dependencies | ||
"aviary.gsm8k[typing]", # So `uv sync` pulls this in, and for type stubs | ||
"aviary.hotpotqa", # So `uv sync` pulls this in | ||
"fhaviary[image,llm,server,typing,xml]", |
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.
Does this actually work (referring to other extras within this extra)?
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.
Yep - just tested uv pip install -e '.[dev]'
on a clean env and all extras were pulled in.
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.
Also CI is passing, which would need these dependencies
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.
lgtm
"SQLAlchemy[aiosqlite]~=2.0", # Match aviary dependencies | ||
"aviary.gsm8k[typing]", # So `uv sync` pulls this in, and for type stubs | ||
"aviary.hotpotqa", # So `uv sync` pulls this in | ||
"codeflash", |
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.
Should we remove codeflash
from here?
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.
[dev]
extra so that users can dopip install -e '.[dev]'
.uv sync
should still work.gsm8k
andhotpotqa
toaviary.envs
submodulesaviary.core
to organize imports. Note that we cannot auto-import inaviary/__init__.py
due to native namespace packaging.