Skip to content

Commit

Permalink
all: release 0.1.4 (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored May 16, 2024
1 parent 15b0264 commit e872a4c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
13 changes: 9 additions & 4 deletions libs/community/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-google-community"
version = "1.0.3"
version = "1.0.4"
description = "An integration package connecting miscellaneous Google's products and LangChain"
authors = []
readme = "README.md"
Expand All @@ -20,7 +20,7 @@ grpcio = "^1.62.0"
google-cloud-bigquery = { version = "^3.21.0", optional = true }
google-cloud-documentai = { version = "^2.26.0", optional = true }
google-cloud-contentwarehouse = { version = "^0.7.7", optional = true }
google-cloud-documentai-toolbox = { version = "^0.13.3a0", optional = true }
google-cloud-documentai-toolbox = { version = "^0.13.3a0", optional = true }
gapic-google-longrunning = { version = "^0.11.2", optional = true }
google-auth-httplib2 = { version = "^0.2.0", optional = true }
google-auth-oauthlib = { version = "^1.2.0", optional = true }
Expand All @@ -35,7 +35,12 @@ beautifulsoup4 = { version = "^4.12.3", optional = true }

[tool.poetry.extras]
bigquery = ["google-cloud-bigquery"]
docai = ["google-cloud-documentai", "google-cloud-contentwarehouse", "google-cloud-documentai-toolbox", "gapic-google-longrunning"]
docai = [
"google-cloud-documentai",
"google-cloud-contentwarehouse",
"google-cloud-documentai-toolbox",
"gapic-google-longrunning",
]
drive = ["google-auth-httplib2", "google-auth-oauthlib"]
gcs = ["google-cloud-storage"]
speech = ["google-cloud-speech"]
Expand Down Expand Up @@ -132,4 +137,4 @@ markers = [
"asyncio: mark tests as requiring asyncio",
"compile: mark placeholder test used to compile integration tests without running them",
]
asyncio_mode = "auto"
asyncio_mode = "auto"
8 changes: 4 additions & 4 deletions libs/genai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-google-genai"
version = "1.0.3"
version = "1.0.4"
description = "An integration package connecting Google's genai package and LangChain"
authors = []
readme = "README.md"
Expand Down Expand Up @@ -30,7 +30,7 @@ syrupy = "^4.0.2"
pytest-watcher = "^0.3.4"
pytest-asyncio = "^0.21.1"
numpy = "^1.26.2"
langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core"}
langchain-core = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core" }

[tool.poetry.group.codespell]
optional = true
Expand All @@ -57,7 +57,7 @@ types-requests = "^2.28.11.5"
types-google-cloud-ndb = "^2.2.0.1"
types-pillow = "^10.1.0.2"
types-protobuf = "^4.24.0.20240302"
langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core"}
langchain-core = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core" }

[tool.poetry.group.dev]
optional = true
Expand All @@ -67,7 +67,7 @@ pillow = "^10.1.0"
types-requests = "^2.31.0.10"
types-pillow = "^10.1.0.2"
types-google-cloud-ndb = "^2.2.0.1"
langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core"}
langchain-core = { git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core" }

[tool.ruff]
select = [
Expand Down
3 changes: 1 addition & 2 deletions libs/vertexai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[tool.poetry]
name = "langchain-google-vertexai"

version = "1.0.3"
version = "1.0.4"
description = "An integration package connecting Google VertexAI and LangChain"
authors = []
readme = "README.md"
Expand Down

0 comments on commit e872a4c

Please sign in to comment.