-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH Action fails to get requirements to build wheel #25
Comments
getting the same issue |
Also seeing this. |
another one |
I've forked, tried newer versions of Alpine as well as added an explicit |
was able to get this working in my fork by pinning to PyYaml 5.3.1.
|
Option 1: Install yamllint using the package manager yamllint --version returns 1.31.0 Option 2: Install a latestversion of yamllint 1.32.0 in our case - we would have to come here to update Option 3: Use a workaround to install pyyaml - yaml/pyyaml#724 (comment) RUN pip install "cython<3.0.0" && pip install --no-build-isolation pyyaml==6.0 |
I have a PR Open for config that worked for me, but the other path may be preferred? |
As suggested by @rtrox , I switched to https://github.com/ibiqlik/action-yamllint for now, it solves my issue and has very similar usage as https://github.com/karancode/yamllint-github-action . Here is the successfull run: https://github.com/TheNewThinkTank/fitness-tracker/actions/runs/5585083861/jobs/10207344789 Just had to change minor detail (yaml path name, from - name: yamllint workout_programs
# uses: karancode/yamllint-github-action@master
uses: ibiqlik/action-yamllint@v3
with:
# yamllint_file_or_dir: "./workout_programs.yml"
file_or_dir: "./workout_programs.yml" |
Hi,
Facing issue:
error: subprocess-exited-with-error
:https://github.com/TheNewThinkTank/fitness-tracker/actions/runs/5577580966/jobs/10190537987
This happens in the GitHub Actions workflow, inside the Docker container,
right after collecting pyyaml and downloading PyYAML-6.0.tar.gz
The text was updated successfully, but these errors were encountered: