Skip to content

Commit

Permalink
Fix Project Membership data automation
Browse files Browse the repository at this point in the history
Tested at https://github.com/kingdonb/community/actions/runs/12432743481/job/34712822704
(the workflow still fails, but it gets past the dependency issue)

I guessed this was the issue when I tried running "pip install" on my
local Mac environment, like the workflow does, and it failed. Running
instead "pip3.10" to match the selected python version succeeded locally
and seems to have succeeded as well in a GitHub Actions test on my fork.

I think this will fix it :fingers_crossed:

Signed-off-by: Kingdon B <yebyen@gmail.com>
  • Loading branch information
yebyen committed Dec 20, 2024
1 parent 716211f commit df803f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-project-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
python-version: '3.10'
cache: 'pip' # caching pip dependencies
- run: pip install -r ./project/requirements.txt
- run: pip3.10 install -r ./project/requirements.txt
- run: |
./project/bin/get_maintainer_data
env:
Expand Down

0 comments on commit df803f7

Please sign in to comment.