Skip to content

Commit

Permalink
Merge branch 'python-dependency-flattening'
Browse files Browse the repository at this point in the history
  • Loading branch information
karimodm committed Feb 12, 2025
2 parents 267b035 + 069bc80 commit 97b25f7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion python/examples/langchain/uniswap/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ python = "^3.12"
langchain = "^0.3.2"
langchain-openai = "^0.2.14"
python-dotenv = "^1.0.1"
web3 = "^6.20.3"
web3 = ">=6.20.3"
goat-sdk = "^0.1.0"
goat-sdk-wallet-evm = "^0.1.1"
goat-sdk-wallet-web3 = "0.1.2"
Expand Down
6 changes: 3 additions & 3 deletions python/examples/langchain/web3/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ packages = [

[tool.poetry.dependencies]
python = "^3.12"
langchain = "^0.3.2"
langchain-openai = "^0.2.14"
langchain = ">=0.3.2"
langchain-openai = ">=0.2.14"
python-dotenv = "^1.0.1"
web3 = "^6.20.3"
web3 = ">=6.20.3"
goat-sdk = "^0.1.0"
goat-sdk-wallet-evm = "^0.1.0"
goat-sdk-wallet-web3 = "^0.1.0"
Expand Down
10 changes: 5 additions & 5 deletions python/src/wallets/crossmint/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "goat-sdk-wallet-crossmint"
version = "0.1.0"
version = "0.1.4"
description = "Crossmint wallet implementation for GOAT SDK"
authors = ["GOAT SDK Team"]
readme = "README.md"
Expand All @@ -12,14 +12,14 @@ packages = [
]

[tool.poetry.dependencies]
web3 = "^6.0.0"
python = "^3.10"
goat-sdk = "^0.1.0"
goat-sdk-wallet-evm = "^0.1.0"
goat-sdk-wallet-solana = "^0.1.0"
eth-account = "^0.8"
base58 = "^2.1"
setuptools = "^70"
web3 = ">=6.0.0"
eth-account = ">=0.8"
base58 = ">=2.1"
setuptools = ">=70"

[tool.poetry.group.test.dependencies]
pytest = "^8.3"
Expand Down
4 changes: 2 additions & 2 deletions python/src/wallets/web3/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "goat-sdk-wallet-web3"
version = "0.1.3"
version = "0.1.4"
description = "Goat SDK Web3 wallet implementation"
authors = ["Andrea Villa <[email protected]>"]
readme = "README.md"
Expand All @@ -14,7 +14,7 @@ packages = [
[tool.poetry.dependencies]
python = "^3.10"
goat-sdk = "^0.1.0"
web3 = "^6.20.3"
web3 = ">=6.20.3"
goat-sdk-wallet-evm = "^0.1.0"

[tool.poetry.group.test.dependencies]
Expand Down

0 comments on commit 97b25f7

Please sign in to comment.