File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 4848 uv run python -c "from osgeo import gdal"
4949 uv run gdalinfo --version
5050
51+ - name : Clean old uv cache and environments
52+ run : |
53+ echo "🧹 Cleaning old uv cache and virtual environments..."
54+ uv cache clear || true
55+ rm -rf .venv || true
56+ rm -f uv.lock || true
57+
5158 - name : Install dependencies
5259 run : |
5360 uv sync --all-extras
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ jobs:
2525 - name : Setup Python
2626 run : uv python install 3.11
2727
28- - name : Clean old uv caches
29- run : |
30- uv cache clean
31- rm -rf .venv uv.lock
28+ # - name: Clean old uv caches
29+ # run: |
30+ # uv cache clean
31+ # rm -rf .venv uv.lock
3232
3333 - name : Install dependencies
34- run : uv sync --all-extras -v # Install all dependencies including dev
34+ run : uv sync --all-extras # Install all dependencies including dev
3535
3636 - name : Build package
3737 run : uv build
You can’t perform that action at this time.
0 commit comments