We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee2146 commit eb2a74aCopy full SHA for eb2a74a
pelican/action.yml
@@ -45,7 +45,7 @@ runs:
45
run: |
46
(
47
test "${{ inputs.debug }}" == 'true' || exec >/dev/null
48
- pip3 install pelican==${{ inputs.version }} markdown bs4 ezt requests
+ pip3 install --break-system-packages pelican==${{ inputs.version }} markdown bs4 ezt requests
49
)
50
python3 -V
51
echo "Pelican version:"
@@ -95,7 +95,7 @@ runs:
95
if [ -n "${{ inputs.requirements }}" ]
96
then
97
echo "Installing python requirements from ${{ inputs.requirements }}"
98
- pip3 install -r ${{ inputs.requirements }}
+ pip3 install --break-system-packages -r ${{ inputs.requirements }}
99
fi
100
if [ "${{ inputs.debug }}" == 'true' ]
101
0 commit comments