Skip to content

Commit

Permalink
ci: Fix add-package action (cvc5#10729)
Browse files Browse the repository at this point in the history
PR cvc5#10700 stopped installing some unnecessary Python dependencies.
However, the installation of these dependencies had the side-effect of
fixing an unrelated issue in the add-package action. This PR addresses
directly the issue in the add-package action.
  • Loading branch information
daniel-larraz authored May 6, 2024
1 parent 4929686 commit 983b0dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/actions/add-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ runs:
- name: install pyGithub
shell: ${{ inputs.shell }}
run: |
# Upgrading pyopenssl resolves the following error:
# AttributeError:
# module 'lib' has no attribute 'X509_V_FLAG_NOTIFY_POLICY'
python3 -m pip install -U pyopenssl
python3 -m pip install pyGithub
- name: Store to latest
Expand Down

0 comments on commit 983b0dd

Please sign in to comment.