Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/cratedb-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
matrix:
os: ["ubuntu-latest"]
python-version: [
"3.13",
"3.14",
]

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dynamodb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
os: ["ubuntu-latest"]
python-version: [
"3.10",
"3.13",
"3.14",
]
localstack-version: ["4.5"]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/influxdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
os: ["ubuntu-latest"]
python-version: [
"3.9",
"3.13",
"3.14",
]
influxdb-version: ["2.6", "2.7"]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
os: ["ubuntu-latest"]
python-version: [
"3.9",
"3.13",
"3.14",
]

env:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
tags:
- '*'

# Cancel in-progress jobs when pushing to the same branch.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}

jobs:

cfr:
Expand Down Expand Up @@ -40,7 +45,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
python-version: '3.13'

- name: Install uv
uses: astral-sh/setup-uv@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-oci-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'

- name: Install uv
uses: astral-sh/setup-uv@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-oci-ingest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'

- name: Install uv
uses: astral-sh/setup-uv@v6
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
tags:
- '*.*.*'

# Cancel in-progress jobs when pushing to the same branch.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
build-and-publish:
name: Build & publish package to PyPI
Expand All @@ -20,7 +25,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
python-version: '3.14'

- name: Install uv
uses: astral-sh/setup-uv@v6
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
- Settings: Stop flagging `gateway.recover_after_time` as a difference
when both `gateway.expected_nodes` and `gateway.expected_data_nodes` are
unset (`-1`).
- Dependencies: Validated on CI with Python 3.14
- Dependencies: Permitted installation of pyarrow 22

## 2025/08/19 v0.0.41
- I/O: Updated to `influxio-0.6.0`. Thanks, @ZillKhan.
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Adaptive Technologies",
"Topic :: Communications",
"Topic :: Database",
Expand Down Expand Up @@ -128,7 +129,7 @@ optional-dependencies.cfr = [
"numpy<2.3",
"pandas<2.3",
"polars<1.34",
"pyarrow<21.1",
"pyarrow<23",
"queryanonymizer<1.2",
]
optional-dependencies.datasets = [
Expand Down
Loading