CI: Don't stop on pkg_resources DeprecationWarning #206
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build HTML on macOS | |
on: [push, pull_request] | |
env: | |
PYTHONWARNINGS: error | |
PIP: python -m pip | |
SPHINX: python -m sphinx -W --keep-going --color | |
jobs: | |
html-macos: | |
runs-on: macos-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pandoc | |
run: | | |
brew install pandoc | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3 | |
- name: Double-check Python version | |
run: | | |
python --version | |
- name: Install Python package | |
env: | |
PYTHONWARNINGS: error,default:pkg_resources is deprecated as an API:DeprecationWarning | |
run: | | |
$PIP install . | |
- name: Install docs dependencies | |
run: | | |
$PIP install -r doc/requirements.txt | |
- name: Build HTML | |
run: | | |
$SPHINX doc/ _build/html/ |