File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838 run : uv python install ${{ matrix.python-version }}
3939
4040 - name : Install dependencies
41- run : uv sync --python ${{ matrix.python-version }}
41+ run : |
42+ uv venv --python ${{ matrix.python-version }}
43+ uv pip install .
4244
4345 - name : Install optional dependencies
4446 run : |
Original file line number Diff line number Diff line change 3838 run : uv python install ${{ matrix.python-version }}
3939
4040 - name : Install dependencies
41- run : uv sync --python ${{ matrix.python-version }}
41+ run : |
42+ uv venv --python ${{ matrix.python-version }}
43+ uv pip install .
4244
4345 - name : Install optional dependencies
4446 run : |
Original file line number Diff line number Diff line change 2727 run : uv python install ${{ matrix.python-version }}
2828
2929 - name : Install dependencies
30- run : uv sync --python ${{ matrix.python-version }}
30+ run : |
31+ uv venv --python ${{ matrix.python-version }}
32+ uv pip install .
3133
3234 - name : Test import
3335 run : uv run python -c "import leafmap; print('leafmap import successful')"
Original file line number Diff line number Diff line change 3131 run : uv python install ${{ matrix.config.py }}
3232
3333 - name : Install dependencies
34- run : uv sync --python ${{ matrix.config.py }}
34+ run : |
35+ uv venv --python ${{ matrix.config.py }}
36+ uv pip install .
3537
3638 - name : Test import
3739 run : |
Original file line number Diff line number Diff line change @@ -34,14 +34,16 @@ jobs:
3434 uses : astral-sh/setup-uv@v5
3535 with :
3636 version : " 0.4.16"
37- # enable-cache: true
37+ enable-cache : false
3838
3939 - name : Set up Python ${{ matrix.python-version }}
4040 run : uv python install ${{ matrix.python-version }}
4141
4242 - name : Install dependencies
43- run : uv sync --python ${{ matrix.python-version }}
44-
45- - name : Test import
4643 run : |
47- uv run python -c "import leafmap; print('leafmap import successful')"
44+ uv venv --python ${{ matrix.python-version }}
45+ uv pip install .
46+
47+ # - name: Test import
48+ # run: |
49+ # uv run python -c "import leafmap; print('leafmap import successful')"
Original file line number Diff line number Diff line change 4040 run : uv python install ${{ matrix.python-version }}
4141
4242 - name : Install dependencies
43- run : uv sync --python ${{ matrix.python-version }}
43+ run : |
44+ uv venv --python ${{ matrix.python-version }}
45+ uv pip install .
4446
4547 - name : Install optional dependencies
4648 run : |
Original file line number Diff line number Diff line change 3737 run : uv python install ${{ matrix.python-version }}
3838
3939 - name : Install dependencies
40- run : uv sync --python ${{ matrix.python-version }}
40+ run : |
41+ uv venv --python ${{ matrix.python-version }}
42+ uv pip install .
4143
4244 - name : Test import
4345 run : |
You can’t perform that action at this time.
0 commit comments