Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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",
]
Comment thread
amotl marked this conversation as resolved.
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
2 changes: 1 addition & 1 deletion .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,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: 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
2 changes: 1 addition & 1 deletion .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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