Skip to content

Commit 32b1b73

Browse files
author
Matic Lubej
committed
force cache update if updates available
1 parent bb972b3 commit 32b1b73

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci_action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
cache: pip # caching the entire environment is faster when cache exists but slower for cache creation
5151

5252
- name: Install packages
53-
run: pip install -e .[DEV,ML]
53+
run: pip install -U -e .[DEV,ML]
5454

5555
- name: Run mypy
5656
run: mypy eogrow
@@ -87,12 +87,12 @@ jobs:
8787
sudo apt-get install -y build-essential gdal-bin libgdal-dev graphviz proj-bin gcc libproj-dev libspatialindex-dev libboost-all-dev
8888
export CPLUS_INCLUDE_PATH=/usr/include/gdal
8989
export C_INCLUDE_PATH=/usr/include/gdal
90-
pip install -e .[DEV,ML]
91-
pip install gdal==$(gdal-config --version)
90+
pip install -U -e .[DEV,ML]
91+
pip install -U gdal==$(gdal-config --version)
9292
9393
- name: Set up local cluster # we need to install async-timeout until ray 2.9.0 fixes the issue
9494
run: |
95-
pip install async-timeout
95+
pip install -U async-timeout
9696
ray start --head
9797
9898
- name: Run fast tests

0 commit comments

Comments
 (0)