Skip to content
Draft
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
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:24.04
strategy:
matrix:
python-version: ["3.13"]
python-version: ["3.14"]
services:
# Label used to access the service container
postgres:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/import-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-10.15, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5

Expand Down
14 changes: 7 additions & 7 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: [[310, "3.10"], [311, "3.11"], [312, "3.12"], [313, "3.13"]]
python-version: [[310, "3.10"], [311, "3.11"], [312, "3.12"], [313, "3.13"], [314, "3.14"]]
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-22.04-arm
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout Repository
uses: actions/checkout@v5
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
strategy:
matrix:
os: ["windows-latest", "macos-13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
include:
- os: "macos-13"
features: "--features integrated-auth-gssapi"
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
needs: [win-and-mac, linux]
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [macos-13, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v5
Expand All @@ -258,7 +258,7 @@ jobs:
needs: [apple-arm]
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [macos-latest]
steps:
- uses: actions/checkout@v5
Expand All @@ -280,7 +280,7 @@ jobs:
needs: [linux-aarch]
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout Repository
uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion connectorx-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ numpy = ">=2.1"
pandas = {version = ">=2", optional = true}
polars = {version = ">=1", optional = true}
pyarrow = {version = ">=4", optional = true}
python = ">=3.10,<3.14"
python = ">=3.10,<3.15"

[tool.poetry.extras]
all = ["dask", "pandas", "modin", "polars", "pyarrow"]
Expand Down