Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Py313 #2013

Merged
merged 3 commits into from
Oct 22, 2024
Merged

Py313 #2013

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
11 changes: 1 addition & 10 deletions .github/workflows/test_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.12"]
experimental: [false]
include:
- python-version: "3.12"
os: "ubuntu-latest"
experimental: true
python-version: ["3.9", "3.13"]
fail-fast: false
defaults:
run:
Expand All @@ -35,10 +30,6 @@ jobs:
--file requirements.txt
--file requirements-dev.txt

- name: Install nightly versions of dependencies
if: matrix.experimental == true
run: python -m pip install --pre --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --extra-index-url https://pypi.org/simple numpy pandas shapely -U

- name: Install folium from source
run: python -m pip install -e . --no-deps --force-reinstall

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_selenium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.12" ]
python-version: [ "3.9", "3.13" ]
fail-fast: false

steps:
Expand Down
3 changes: 1 addition & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ nbconvert
nbsphinx
nbval
owslib
pandas
pandas >=2
pillow
pre-commit
pycodestyle
Expand All @@ -33,7 +33,6 @@ scipy
selenium
setuptools_scm
sphinx
twine>=3.2.0
types-requests
vega_datasets
vincent
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ def walk_subpkg(name):
url="https://github.com/python-visualization/folium",
keywords="data visualization",
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: MIT License",
Expand Down