This is an automated email from the ASF dual-hosted git repository.
amoeba pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-cookbook.git
The following commit(s) were added to refs/heads/main by this push:
new fee0811 MINOR: Fix Python version in deploy workflows
fee0811 is described below
commit fee081170aac0cef8ac6bbd761553f0a7561051f
Author: Bryce Mecum <[email protected]>
AuthorDate: Wed Apr 22 19:03:26 2026 -0700
MINOR: Fix Python version in deploy workflows
---
.github/workflows/deploy_development_cookbooks.yml | 2 +-
.github/workflows/deploy_stable_cookbooks.yml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/deploy_development_cookbooks.yml
b/.github/workflows/deploy_development_cookbooks.yml
index 8a8c50a..e34a35e 100644
--- a/.github/workflows/deploy_development_cookbooks.yml
+++ b/.github/workflows/deploy_development_cookbooks.yml
@@ -58,7 +58,7 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
- python-version: 3.10
+ python-version: "3.10"
activate-environment: cookbook-cpp-dev
environment-file: cpp/dev.yml
auto-activate-base: false
diff --git a/.github/workflows/deploy_stable_cookbooks.yml
b/.github/workflows/deploy_stable_cookbooks.yml
index efcd382..fa84895 100644
--- a/.github/workflows/deploy_stable_cookbooks.yml
+++ b/.github/workflows/deploy_stable_cookbooks.yml
@@ -58,7 +58,7 @@ jobs:
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
- python-version: 3.10
+ python-version: "3.10"
activate-environment: cookbook-cpp
environment-file: cpp/environment.yml
auto-activate-base: false