There was an error while loading. Please reload this page.
1 parent a96035c commit 509a93cCopy full SHA for 509a93c
.github/workflows/ci_action.yml
@@ -85,7 +85,9 @@ jobs:
85
cache: pip
86
87
- name: Install packages
88
- run: pip install -e .[DEV] --upgrade --upgrade-strategy eager
+ run: | # must install async-timeout until ray fixes issue
89
+ pip install -e .[DEV] --upgrade --upgrade-strategy eager
90
+ pip install async-timeout
91
92
- name: Run full tests and code coverage
93
if: ${{ matrix.full_test_suite }}
pyproject.toml
@@ -52,7 +52,7 @@ dependencies = [
52
"python-dateutil",
53
"sentinelhub>=3.9.0",
54
"tqdm>=4.27",
55
- "typing-extensions",
+ "typing-extensions>=4.5.0",
56
"opencv-python-headless",
57
"affine",
58
"rasterio>=1.3.8",
0 commit comments