Skip to content

Commit

Permalink
Revert "CI: Verify support on Python 3.13"
Browse files Browse the repository at this point in the history
This reverts commit af26287.
  • Loading branch information
amotl committed Oct 18, 2024
1 parent af26287 commit eb9e84b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-22.04"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
cratedb-version: ["nightly"]
fail-fast: false

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Documentation",
Expand Down Expand Up @@ -79,7 +78,7 @@ optional-dependencies.release = [
]
optional-dependencies.test = [
"pandas<2.3",
"polars[pyarrow]<1.10; python_version<'3.13'",
"polars[pyarrow]<1.10",
"pytest<9",
"pytest-asyncio<1",
"pytest-cov<6",
Expand Down
4 changes: 1 addition & 3 deletions tests/test_cratedb_polars_read.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# ruff: noqa: E402
import sys

import polars as pl
import pytest

pl = pytest.importorskip("polars")
import sqlalchemy as sa
from polars.testing import assert_frame_equal

Expand Down

0 comments on commit eb9e84b

Please sign in to comment.