This is an automated email from the ASF dual-hosted git repository.

raulcd pushed a commit to branch maint-25.0.x
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 8fb632a2eebdaf5ff230a797e587a4c3359f9fac
Author: Raúl Cumplido <[email protected]>
AuthorDate: Mon Jul 6 10:24:12 2026 +0200

    GH-50383: [Release] Remove deprecated -f flag on conda create environment 
(#50384)
    
    ### Rationale for this change
    
    The Windows Wheels verification job is currently failing due to a change of 
API on the conda create call.
    
    ### What changes are included in this PR?
    
    Remove the deprecated `-f` flag.
    
    ### Are these changes tested?
    
    Yes, I have pushed the branch to the Apache Arrow repository instead of my 
fork to be able to manually trigger the workflow for the RC via workflow 
dispatch in order to validate the changes.
    
    ### Are there any user-facing changes?
    
    No
    
    * GitHub Issue: #50383
    
    Authored-by: Raúl Cumplido <[email protected]>
    Signed-off-by: Raúl Cumplido <[email protected]>
---
 dev/release/verify-release-candidate-wheels.bat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/release/verify-release-candidate-wheels.bat 
b/dev/release/verify-release-candidate-wheels.bat
index df503f67d2..431e96f24d 100644
--- a/dev/release/verify-release-candidate-wheels.bat
+++ b/dev/release/verify-release-candidate-wheels.bat
@@ -78,7 +78,7 @@ set PY_VERSION_NO_PERIOD=%PY_VERSION:.=%
 
 set CONDA_ENV_PATH=%_VERIFICATION_DIR%\_verify-wheel-%PY_VERSION%
 call conda create -p %CONDA_ENV_PATH% ^
-    --no-shortcuts -f -q -y python=%PY_VERSION% ^
+    --no-shortcuts -q -y python=%PY_VERSION% ^
     || EXIT /B 1
 call activate %CONDA_ENV_PATH%
 

Reply via email to