This is an automated email from the ASF dual-hosted git repository.
timsaucer pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-python.git
The following commit(s) were added to refs/heads/main by this push:
new d87c6e80 chore: bump Python version for RAT checking (#1386)
d87c6e80 is described below
commit d87c6e8049c165158071460f4550546fdc5c42c6
Author: Tim Saucer <[email protected]>
AuthorDate: Thu Feb 19 07:27:53 2026 -0500
chore: bump Python version for RAT checking (#1386)
* Bump python version to correct error in rat checking
* Add missing license files
---
.github/workflows/dev.yml | 2 +-
examples/datafusion-ffi-example/src/utils.rs | 17 +++++++++++++++++
python/tests/test_udtf.py | 17 +++++++++++++++++
src/options.rs | 17 +++++++++++++++++
4 files changed, 52 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml
index 434fd9b5..2c8ecbc5 100644
--- a/.github/workflows/dev.yml
+++ b/.github/workflows/dev.yml
@@ -29,6 +29,6 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
- python-version: "3.10"
+ python-version: "3.14"
- name: Audit licenses
run: ./dev/release/run-rat.sh .
diff --git a/examples/datafusion-ffi-example/src/utils.rs
b/examples/datafusion-ffi-example/src/utils.rs
index d06dc2d6..a01d3fe2 100644
--- a/examples/datafusion-ffi-example/src/utils.rs
+++ b/examples/datafusion-ffi-example/src/utils.rs
@@ -1,3 +1,20 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership. The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied. See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
use datafusion_ffi::proto::logical_extension_codec::FFI_LogicalExtensionCodec;
use pyo3::exceptions::PyValueError;
use pyo3::prelude::{PyAnyMethods, PyCapsuleMethods};
diff --git a/python/tests/test_udtf.py b/python/tests/test_udtf.py
index dba46e61..925a8ba0 100644
--- a/python/tests/test_udtf.py
+++ b/python/tests/test_udtf.py
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
import pyarrow as pa
import pyarrow.dataset as ds
from datafusion import Expr, SessionContext, Table, udtf
diff --git a/src/options.rs b/src/options.rs
index 46d22b3d..6b603769 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -1,3 +1,20 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership. The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied. See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
use arrow::datatypes::{DataType, Schema};
use arrow::pyarrow::PyArrowType;
use datafusion::prelude::CsvReadOptions;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]