Separate cloud dependencies in pyproject.toml (#3779)
This commit is contained in:
committed by
GitHub
parent
94aa66c241
commit
fa72605f89
@@ -40,15 +40,12 @@ dependencies = [
|
|||||||
"types-toml>=0.10.8.7,<0.11",
|
"types-toml>=0.10.8.7,<0.11",
|
||||||
"httpx[socks]>=0.27.0",
|
"httpx[socks]>=0.27.0",
|
||||||
"filetype>=1.2.0,<2",
|
"filetype>=1.2.0,<2",
|
||||||
"redis>=5.0.3,<6",
|
|
||||||
"onnxruntime>=1.20.0,<1.23.0 ; python_version >= '3.12' and python_version < '3.14'",
|
"onnxruntime>=1.20.0,<1.23.0 ; python_version >= '3.12' and python_version < '3.14'",
|
||||||
"onnxruntime<1.17 ; python_version >= '3.11' and python_version < '3.12'",
|
"onnxruntime<1.17 ; python_version >= '3.11' and python_version < '3.12'",
|
||||||
"aioredlock>=0.7.3,<0.8",
|
"aioredlock>=0.7.3,<0.8",
|
||||||
"stripe>=9.7.0,<10",
|
|
||||||
"tldextract>=5.1.2,<6",
|
"tldextract>=5.1.2,<6",
|
||||||
"websockets~=12.0",
|
"websockets~=12.0",
|
||||||
"email-validator>=2.2.0,<3",
|
"email-validator>=2.2.0,<3",
|
||||||
"temporalio>=1.6.0,<2",
|
|
||||||
"requests-toolbelt>=1.0.0,<2",
|
"requests-toolbelt>=1.0.0,<2",
|
||||||
"rich[jupyter]>=13.7.0,<14",
|
"rich[jupyter]>=13.7.0,<14",
|
||||||
"posthog>=3.7.0,<4",
|
"posthog>=3.7.0,<4",
|
||||||
@@ -73,11 +70,16 @@ dependencies = [
|
|||||||
"openpyxl>=3.1.5,<4",
|
"openpyxl>=3.1.5,<4",
|
||||||
"pandas>=2.3.1,<3",
|
"pandas>=2.3.1,<3",
|
||||||
"azure-identity>=1.24.0,<2",
|
"azure-identity>=1.24.0,<2",
|
||||||
"azure-keyvault>=4.2.0,<5",
|
"azure-keyvault-secrets>=4.2.0,<5",
|
||||||
"dramatiq[asyncio]>=1.18.0,<2",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
|
cloud = [
|
||||||
|
"stripe>=9.7.0,<10",
|
||||||
|
"temporalio>=1.6.0,<2",
|
||||||
|
"dramatiq[asyncio]>=1.18.0,<2",
|
||||||
|
"redis>=5.0.3,<6",
|
||||||
|
]
|
||||||
dev = [
|
dev = [
|
||||||
"isort>=5.13.2,<6",
|
"isort>=5.13.2,<6",
|
||||||
"mypy>=1.18.2,<2",
|
"mypy>=1.18.2,<2",
|
||||||
|
|||||||
Reference in New Issue
Block a user