-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving to
uv
dependency groups (#142)
- Loading branch information
1 parent
e3a7450
commit 59ff22a
Showing
4 changed files
with
115 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,13 @@ | |
build-backend = "setuptools.build_meta" | ||
requires = ["setuptools>=64", "setuptools_scm>=8"] | ||
|
||
[dependency-groups] | ||
codeflash = [ | ||
"codeflash>=0.7", # Pin to keep recent | ||
"ldp[dev]", | ||
] | ||
dev = ["ldp[dev]"] | ||
|
||
[project] | ||
authors = [ | ||
{email = "[email protected]", name = "FutureHouse technical staff"}, | ||
|
@@ -38,6 +45,28 @@ readme = "README.md" | |
requires-python = ">=3.11" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"fhaviary[xml]", | ||
"ipython>=8", # Pin to keep recent | ||
"ldp[monitor,nn,rich,server,typing,visualization]", | ||
"litellm!=1.49.4,!=1.49.5,!=1.49.6", # For https://github.com/BerriAI/litellm/issues/6216 | ||
"mypy>=1.8", # Pin for mutable-override | ||
"openai<1.47", # Pin for https://github.com/BerriAI/litellm/issues/5854 | ||
"pre-commit>=3.4", # Pin to keep recent | ||
"pydantic~=2.9", # Pydantic 2.9 changed JSON schema exports 'allOf', so ensure tests match | ||
"pylint-pydantic", | ||
"pylint>=3.2", # Pin to keep recent | ||
"pytest-asyncio", | ||
"pytest-mock", | ||
"pytest-recording", | ||
"pytest-rerunfailures", | ||
"pytest-subtests", | ||
"pytest-sugar", | ||
"pytest-timer[colorama]", | ||
"pytest-xdist", | ||
"pytest>=8", # Pin to keep recent | ||
"refurb>=2", # Pin to keep recent | ||
] | ||
monitor = [ | ||
"wandb", | ||
] | ||
|
@@ -414,28 +443,3 @@ in_place = true | |
spaces_before_inline_comment = 2 # Match Python PEP 8 | ||
spaces_indent_inline_array = 4 # Match Python PEP 8 | ||
trailing_comma_inline_array = true | ||
|
||
[tool.uv] | ||
dev-dependencies = [ | ||
"codeflash", | ||
"fhaviary[xml]", | ||
"ipython>=8", # Pin to keep recent | ||
"ldp[monitor,nn,rich,server,typing,visualization]", | ||
"litellm!=1.49.4,!=1.49.5,!=1.49.6", # For https://github.com/BerriAI/litellm/issues/6216 | ||
"mypy>=1.8", # Pin for mutable-override | ||
"openai<1.47", # Pin for https://github.com/BerriAI/litellm/issues/5854 | ||
"pre-commit>=3.4", # Pin to keep recent | ||
"pydantic~=2.9", # Pydantic 2.9 changed JSON schema exports 'allOf', so ensure tests match | ||
"pylint-pydantic", | ||
"pylint>=3.2", # Pin to keep recent | ||
"pytest-asyncio", | ||
"pytest-mock", | ||
"pytest-recording", | ||
"pytest-rerunfailures", | ||
"pytest-subtests", | ||
"pytest-sugar", | ||
"pytest-timer[colorama]", | ||
"pytest-xdist", | ||
"pytest>=8", # Pin to keep recent | ||
"refurb>=2", # Pin to keep recent | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.