Skip to content

Commit

Permalink
update workflow and test
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxiaoying committed Nov 4, 2024
1 parent b648113 commit d8cf987
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
container: ubuntu:22.04
strategy:
matrix:
python-version: ["3.12"]
python-version: ["3.13"]
services:
# Label used to access the service container
postgres:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container: quay.io/pypa/manylinux_2_28_x86_64
strategy:
matrix:
python-version: [[39, "3.9"], [310, "3.10"], [311, "3.11"], [312, "3.12"]]
python-version: [[39, "3.9"], [310, "3.10"], [311, "3.11"], [312, "3.12"], [313, "3.13"]]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
strategy:
matrix:
os: ["windows-latest", "macos-13"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
include:
- os: "macos-13"
features: "--features integrated-auth-gssapi"
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
needs: [win-and-mac, linux]
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [macos-13, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
Expand All @@ -311,7 +311,7 @@ jobs:
needs: [apple-arm]
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [macos-latest]
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions connectorx-python/connectorx/tests/test_polars.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def postgres_url() -> str:
return conn


def test_modin(postgres_url: str) -> None:
def test_polars(postgres_url: str) -> None:
query = "SELECT * FROM test_table"
df = read_sql(
postgres_url,
Expand All @@ -35,4 +35,4 @@ def test_modin(postgres_url: str) -> None:
)

df = df.sort('test_int')
assert df.frame_equal(expected, null_equal=True)
assert df.equals(expected, null_equal=True)

0 comments on commit d8cf987

Please sign in to comment.