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 3dfd6ee5 Fix CI errors on main (#1432)
3dfd6ee5 is described below

commit 3dfd6ee5d9ba7de0896f195cef5bc16b4d5f0dd0
Author: Tim Saucer <[email protected]>
AuthorDate: Tue Mar 17 15:58:34 2026 -0400

    Fix CI errors on main (#1432)
    
    * Do not run check for patches on main, just release candidates
    
    * It is not necessary to pull submodules. It's only slowing down CI
---
 .github/workflows/build.yml |  2 +-
 Cargo.toml                  | 18 +++++++++---------
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 455a0dc1..4c07b08b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -99,7 +99,7 @@ jobs:
         run: taplo format --check
 
   check-crates-patch:
-    if: inputs.build_mode == 'release'
+    if: inputs.build_mode == 'release' && startsWith(github.ref, 'refs/tags/')
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v6
diff --git a/Cargo.toml b/Cargo.toml
index aa8aa6b3..19b79daf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -70,12 +70,12 @@ codegen-units = 1
 # We cannot publish to crates.io with any patches in the below section. 
Developers
 # must remove any entries in this section before creating a release candidate.
 [patch.crates-io]
-datafusion = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f" }
-datafusion-substrait = { git = "https://github.com/apache/datafusion.git";, rev 
= "35749607f585b3bf25b66b7d2289c56c18d03e4f" }
-datafusion-proto = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f" }
-datafusion-ffi = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f" }
-datafusion-catalog = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f" }
-datafusion-common = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f" }
-datafusion-functions-aggregate = { git = 
"https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f" }
-datafusion-functions-window = { git = 
"https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f" }
-datafusion-expr = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f" }
+datafusion = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }
+datafusion-substrait = { git = "https://github.com/apache/datafusion.git";, rev 
= "35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }
+datafusion-proto = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }
+datafusion-ffi = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }
+datafusion-catalog = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }
+datafusion-common = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }
+datafusion-functions-aggregate = { git = 
"https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }
+datafusion-functions-window = { git = 
"https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }
+datafusion-expr = { git = "https://github.com/apache/datafusion.git";, rev = 
"35749607f585b3bf25b66b7d2289c56c18d03e4f", submodules = false }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to