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

CI: Verify support on Python 3.13 #653

Merged
merged 3 commits into from
Oct 16, 2024
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
os: ['ubuntu-22.04', 'macos-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
kneth marked this conversation as resolved.
Show resolved Hide resolved
cratedb-version: ['5.8.3']

# To save resources, only use the most recent Python versions on macOS.
# To save resources, only verify the most recent Python versions on macOS.
exclude:
- os: 'macos-latest'
python-version: '3.7'
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,8 @@ def read(path):
'backports.zoneinfo<1; python_version<"3.9"',
'certifi',
'createcoverage>=1,<2',
'dask[dataframe]',
'stopit>=1.1.2,<2',
'flake8>=4,<8',
'pandas<2.3',
'pueblo>=0.0.7',
'pytz',
],
doc=['sphinx>=3.5,<9',
Expand All @@ -91,6 +88,7 @@ def read(path):
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Database'
Expand Down