Skip to content

Commit 5dc0b24

Browse files
sudohainguyenachals
authored andcommitted
fix: update dependencies versions due to conflicts
Signed-off-by: Hai Nguyen <quanghai.ng1512@gmail.com>
1 parent 2151c39 commit 5dc0b24

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

setup.py

+7-9
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
from setuptools.command.install import install
3232

3333
except ImportError:
34-
from distutils.command.build_ext import build_ext as _build_ext
3534
from distutils.command.build_py import build_py
3635
from distutils.core import setup
3736

@@ -80,7 +79,7 @@
8079
# FastAPI does not correctly pull starlette dependency on httpx see thread(https://github.com/tiangolo/fastapi/issues/5656).
8180
"httpx>=0.23.3",
8281
"importlib-resources>=6.0.0,<7",
83-
"importlib_metadata>=6.8.0,<7"
82+
"importlib_metadata>=6.8.0,<7",
8483
]
8584

8685
GCP_REQUIRED = [
@@ -91,15 +90,15 @@
9190
"google-cloud-datastore>=2.1.0,<3",
9291
"google-cloud-storage>=1.34.0,<3",
9392
"google-cloud-bigtable>=2.11.0,<3",
94-
"gcsfs",
93+
"fsspec<2023.10.0",
9594
]
9695

9796
REDIS_REQUIRED = [
9897
"redis>=4.2.2,<5",
9998
"hiredis>=2.0.0,<3",
10099
]
101100

102-
AWS_REQUIRED = ["boto3>=1.17.0,<2", "docker>=5.0.2", "s3fs"]
101+
AWS_REQUIRED = ["boto3>=1.17.0,<2", "docker>=5.0.2", "fsspec<2023.10.0"]
103102

104103
BYTEWAX_REQUIRED = ["bytewax==0.15.1", "docker>=5.0.2", "kubernetes<=20.13.0"]
105104

@@ -159,8 +158,8 @@
159158
"moto",
160159
"mypy>=0.981,<0.990",
161160
"avro==1.10.0",
162-
"gcsfs",
163-
"urllib3>=1.25.4,<2",
161+
"fsspec<2023.10.0",
162+
"urllib3>=1.25.4,<3",
164163
"psutil==5.9.0",
165164
"py>=1.11.0", # https://github.com/pytest-dev/pytest/issues/10420
166165
"pytest>=6.0.0,<8",
@@ -173,7 +172,6 @@
173172
"pytest-mock==1.10.4",
174173
"Sphinx>4.0.0,<7",
175174
"testcontainers>=3.5,<4",
176-
"adlfs==0.5.9",
177175
"firebase-admin>=5.2.0,<6",
178176
"pre-commit<3.3.2",
179177
"assertpy==1.1",
@@ -184,10 +182,10 @@
184182
"types-pytz",
185183
"types-PyYAML",
186184
"types-redis",
187-
"types-requests",
185+
"types-requests<2.31.0",
188186
"types-setuptools",
189187
"types-tabulate",
190-
"virtualenv<20.24.2"
188+
"virtualenv<20.24.2",
191189
]
192190
+ GCP_REQUIRED
193191
+ REDIS_REQUIRED

0 commit comments

Comments
 (0)