Skip to content

Commit

Permalink
Make keplergl optional (#98)
Browse files Browse the repository at this point in the history
* Make keplergl optional

* Update uv

* Update uv

* Add python 3.13

* Disable cache

* Skip python 3.12
  • Loading branch information
giswqs authored Feb 11, 2025
1 parent 907a48e commit 0f50cb8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
uses: astral-sh/setup-uv@v5
with:
version: "0.4.12"
enable-cache: true
enable-cache: false

- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
run: uv venv --python ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }}
run: uv pip install .

- name: Install optional dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
uses: astral-sh/setup-uv@v5
with:
version: "0.4.12"
enable-cache: true
enable-cache: false

- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
run: uv venv --python ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }}
run: uv pip install .

- name: Install optional dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
uses: astral-sh/setup-uv@v5
with:
version: "0.4.12"
enable-cache: true
enable-cache: false

- name: Set up Python ${{ matrix.config.py }}
run: uv python install ${{ matrix.config.py }}
run: uv venv --python ${{ matrix.config.py }}

- name: Install dependencies
run: uv sync --python ${{ matrix.config.py }}
run: uv pip install .

- name: Test import
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
uses: astral-sh/setup-uv@v5
with:
version: "0.4.12"
enable-cache: true
enable-cache: false

- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
run: uv venv --python ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }}
run: uv pip install .

- name: Install optional dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
uses: astral-sh/setup-uv@v5
with:
version: "0.4.12"
enable-cache: true
enable-cache: false

- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
run: uv venv --python ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }}
run: uv pip install .

- name: Test import
run: |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ hvplot
hypercoast
ipygany
ipyleaflet
keplergl
# keplergl
laspy
leafmap>=0.38.0
# lidar
Expand Down

0 comments on commit 0f50cb8

Please sign in to comment.