Skip to content

feat: support python 3.13 #1818

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

Merged
merged 9 commits into from
Jan 16, 2025
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12']
python-version: ['3.11', '3.12', '3.13']
pandas-version: ['<2','>=2']
# Pandas<2 is not supported on Python 3.12
exclude:
- python-version: '3.12'
pandas-version: '<2'
- python-version: '3.13'
pandas-version: '<2'

steps:
- uses: actions/checkout@v4
Expand Down
Loading
Loading