Skip to content

Commit

Permalink
Added diagnostics to my GitHub Actions workflow to debug why mpmath p…
Browse files Browse the repository at this point in the history
…ackage is not found.
  • Loading branch information
cosinekitty committed May 30, 2024
1 parent 4a79af6 commit a280e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/astronomy-engine-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
python-version: '3.10'
- name: Install Python tools
run: python -m pip install --upgrade pip && pip install mypy mpmath
run: python -m pip install --upgrade pip && pip install mypy mpmath && pip show mpmath && echo PYTHONPATH=$PYTHONPATH && python -c "import sys; print('sys.path =', sys.path)"
- name: Install documentation tools Linux
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt install -y doxygen xsltproc cppcheck
Expand Down

0 comments on commit a280e72

Please sign in to comment.