Skip to content

Commit 509a93c

Browse files
authored
add version requirement to typing extensions (#779)
* add version requirement to typing extensions * try fix ray issue with async timeout
1 parent a96035c commit 509a93c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci_action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ jobs:
8585
cache: pip
8686

8787
- name: Install packages
88-
run: pip install -e .[DEV] --upgrade --upgrade-strategy eager
88+
run: | # must install async-timeout until ray fixes issue
89+
pip install -e .[DEV] --upgrade --upgrade-strategy eager
90+
pip install async-timeout
8991
9092
- name: Run full tests and code coverage
9193
if: ${{ matrix.full_test_suite }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies = [
5252
"python-dateutil",
5353
"sentinelhub>=3.9.0",
5454
"tqdm>=4.27",
55-
"typing-extensions",
55+
"typing-extensions>=4.5.0",
5656
"opencv-python-headless",
5757
"affine",
5858
"rasterio>=1.3.8",

0 commit comments

Comments
 (0)