Skip to content

Commit

Permalink
build: use Poetry as default build system for dependency installation…
Browse files Browse the repository at this point in the history
… in CI jobs (langgenius#5088)
  • Loading branch information
bowenliang123 authored Jun 12, 2024
1 parent badb334 commit cf8e237
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 1 deletion.
1 change: 1 addition & 0 deletions api/migrations/README
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Single-database configuration for Flask.

74 changes: 73 additions & 1 deletion api/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,20 @@ google-cloud-aiplatform = "1.49.0"
vanna = {version = "0.5.5", extras = ["postgres", "mysql", "clickhouse", "duckdb"]}
kaleido = "0.2.1"

[tool.poetry.group.dev]
optional = true

[tool.poetry.group.dev.dependencies]
coverage = "~7.2.4"
pytest = "~8.1.1"
pytest-benchmark = "~4.0.0"
pytest-env = "~1.1.3"
pytest-mock = "~3.14.0"

[tool.poetry.group.lint]
optional = true

[tool.poetry.group.lint.dependencies]
ruff = "~0.4.8"
dotenv-linter = "~0.5.0"

0 comments on commit cf8e237

Please sign in to comment.