Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test_geopandas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
environment-name: TEST
create-args: >-
python=3
python=3.13
--file folium/requirements.txt

- name: Checkout Geopandas
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test_streamlit_folium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
python-version: '3.13'

- name: Checkout Folium
uses: actions/checkout@v5
Expand All @@ -43,6 +43,9 @@ jobs:
- name: Install streamlit_folium dev dependencies
run: |
cd streamlit_folium
echo hello world
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this? Looks like a debug line, right? Same for the one after the installation.

I wonder if we should either restrict the tests here to not need pyproj/proj, we are focusing on streamlit_folium and I believe we can do that without them. Or we can use conda for the tests. I'll leave to you to decide on the best approach.

sudo apt-get install proj-bin
proj
uv sync --group dev --group test

- name: Install playwright dependencies
Expand Down
Loading