|
31 | 31 | from setuptools.command.install import install |
32 | 32 |
|
33 | 33 | except ImportError: |
34 | | - from distutils.command.build_ext import build_ext as _build_ext |
35 | 34 | from distutils.command.build_py import build_py |
36 | 35 | from distutils.core import setup |
37 | 36 |
|
|
80 | 79 | # FastAPI does not correctly pull starlette dependency on httpx see thread(https://github.com/tiangolo/fastapi/issues/5656). |
81 | 80 | "httpx>=0.23.3", |
82 | 81 | "importlib-resources>=6.0.0,<7", |
83 | | - "importlib_metadata>=6.8.0,<7" |
| 82 | + "importlib_metadata>=6.8.0,<7", |
84 | 83 | ] |
85 | 84 |
|
86 | 85 | GCP_REQUIRED = [ |
|
91 | 90 | "google-cloud-datastore>=2.1.0,<3", |
92 | 91 | "google-cloud-storage>=1.34.0,<3", |
93 | 92 | "google-cloud-bigtable>=2.11.0,<3", |
94 | | - "gcsfs", |
| 93 | + "fsspec<2023.10.0", |
95 | 94 | ] |
96 | 95 |
|
97 | 96 | REDIS_REQUIRED = [ |
98 | 97 | "redis>=4.2.2,<5", |
99 | 98 | "hiredis>=2.0.0,<3", |
100 | 99 | ] |
101 | 100 |
|
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"] |
103 | 102 |
|
104 | 103 | BYTEWAX_REQUIRED = ["bytewax==0.15.1", "docker>=5.0.2", "kubernetes<=20.13.0"] |
105 | 104 |
|
|
159 | 158 | "moto", |
160 | 159 | "mypy>=0.981,<0.990", |
161 | 160 | "avro==1.10.0", |
162 | | - "gcsfs", |
163 | | - "urllib3>=1.25.4,<2", |
| 161 | + "fsspec<2023.10.0", |
| 162 | + "urllib3>=1.25.4,<3", |
164 | 163 | "psutil==5.9.0", |
165 | 164 | "py>=1.11.0", # https://github.com/pytest-dev/pytest/issues/10420 |
166 | 165 | "pytest>=6.0.0,<8", |
|
173 | 172 | "pytest-mock==1.10.4", |
174 | 173 | "Sphinx>4.0.0,<7", |
175 | 174 | "testcontainers>=3.5,<4", |
176 | | - "adlfs==0.5.9", |
177 | 175 | "firebase-admin>=5.2.0,<6", |
178 | 176 | "pre-commit<3.3.2", |
179 | 177 | "assertpy==1.1", |
|
184 | 182 | "types-pytz", |
185 | 183 | "types-PyYAML", |
186 | 184 | "types-redis", |
187 | | - "types-requests", |
| 185 | + "types-requests<2.31.0", |
188 | 186 | "types-setuptools", |
189 | 187 | "types-tabulate", |
190 | | - "virtualenv<20.24.2" |
| 188 | + "virtualenv<20.24.2", |
191 | 189 | ] |
192 | 190 | + GCP_REQUIRED |
193 | 191 | + REDIS_REQUIRED |
|
0 commit comments