Skip to content

Commit

Permalink
Update langflow-base dependency version (#1601)
Browse files Browse the repository at this point in the history
* Update version in pyproject.toml and fix dependency update script

* Update langflow-base dependency version
  • Loading branch information
ogabrielluiz authored Apr 4, 2024
1 parent 7045346 commit 2f4fcc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langflow"
version = "1.0.0a5"
version = "1.0.0a6"
description = "A Python package with a built-in web application"
authors = ["Logspace <[email protected]>"]
maintainers = [
Expand All @@ -26,7 +26,7 @@ langflow = "langflow.__main__:main"

[tool.poetry.dependencies]
python = ">=3.10,<3.12"
langflow-base = { path = "./src/backend/base", develop = true }
langflow-base = "^0.0.19"
beautifulsoup4 = "^4.12.2"
google-search-results = "^2.4.1"
google-api-python-client = "^2.118.0"
Expand Down
2 changes: 1 addition & 1 deletion scripts/update_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def update_pyproject_dependency(pyproject_path, version):

# Reading version and updating pyproject.toml
langflow_base_path = Path(__file__).resolve().parent / "../src/backend/base/pyproject.toml"
version = get_version_from_pypi("langflow-base")
version = read_version_from_pyproject(langflow_base_path)
if version:
update_pyproject_dependency(pyproject_path, version)
else:
Expand Down

0 comments on commit 2f4fcc9

Please sign in to comment.