This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to branch releases-0.12 in repository https://gitbox.apache.org/repos/asf/fory.git
commit 698f30c37e9b5a765adaf0770442a7e7d22967b8 Author: Emre Şafak <[email protected]> AuthorDate: Mon Sep 1 19:37:35 2025 -0400 fix(ci): Install pyfory for golang xlang tests (#2561) ## Why? Golang xlang tests are failing because pyfory is not installed ## What does this PR do? * Add step to install the pyfory package in the CI workflow. * Ensure pyarrow, cython, wheel, pytest, and setuptools are up-to-date. ## Related issues Fixes #2555 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db261c1a6..c79022757 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -300,7 +300,9 @@ jobs: - name: Install bazel run: python ./ci/run_ci.py cpp --install-deps-only - name: Install python dependencies - run: pip install pyarrow==15.0.0 Cython wheel pytest setuptools -U + run: pip install pyarrow==15.0.0 cython wheel pytest setuptools -U + - name: Install pyfory + run: pip install -e python/ - name: Run Golang CI run: python ./ci/run_ci.py go --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
