Skip to content

Commit 0287421

Browse files
authored
Merge pull request #2161 from hansthen/issue_1715
Update README to point to the extra plugin
2 parents 0f04eeb + 5904750 commit 0287421

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/test_streamlit_folium.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.x'
20+
1621
- name: Checkout Folium
1722
uses: actions/checkout@v4
1823

19-
- name: Setup Micromamba env
20-
uses: mamba-org/setup-micromamba@v2
21-
with:
22-
environment-name: TEST
23-
create-args: >-
24-
python=3
25-
--file requirements.txt
26-
2724
- name: Checkout Streamlit Folium
2825
uses: actions/checkout@v4
2926
with:
@@ -41,7 +38,9 @@ jobs:
4138
- name: Install streamlit_folium dev dependencies
4239
shell: bash -l {0}
4340
run: |
44-
conda install --file streamlit_folium/tests/requirements.txt
41+
cd streamlit_folium
42+
python -m pip install --upgrade pip
43+
pip install -r tests/requirements.txt
4544
4645
- name: Install streamlit-folium
4746
shell: bash -l {0}
@@ -60,7 +59,7 @@ jobs:
6059
- name: Install folium from source
6160
shell: bash -l {0}
6261
run: |
63-
python -m pip install -e . --no-deps --force-reinstall
62+
python -m pip install -e . --force-reinstall
6463
6564
- name: Test with pytest and retry flaky tests up to 3 times
6665
shell: bash -l {0}

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,4 @@ Plugins:
8282
- https://github.com/onaci/folium-glify-layer: provide fast webgl rendering for large GeoJSON FeatureCollections
8383
- https://github.com/carlosign/Folium.ControlCredits-Plugin: displaying credits in the corner. Display an image/logo, clicking it will expand to show a brief message with credits and links.
8484
- https://github.com/JohnyCarrot/folium-geocoder-own-locations: a geocoder that accepts a list of suggestions at creation time.
85+
- https://github.com/iwpnd/folium-vectortilelayer: a tile layer that zooms and stretches beyond the maximum and minimum of the tile provider

0 commit comments

Comments
 (0)