Update sphinx-autodoc-typehints requirement from ==2.* to ==3.* #10
This file contains hidden or 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: CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| python: | |
| - '3.8' | |
| - '3.11' | |
| - '3.13' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Cache pip | |
| uses: actions/cache@v4 | |
| with: | |
| key: cache--${{ matrix.os }}--${{ matrix.python }}--${{ hashFiles('./requirements*.txt', './Makefile') }} | |
| restore-keys: cache--${{ matrix.os }}--${{ matrix.python }}-- | |
| path: ~/.cache/pip | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| - name: Display Python version | |
| run: python -c 'import sys; print(sys.version)' | |
| - name: Update pip | |
| run: python -m pip install -U pip wheel setuptools | |
| - name: Install requirements | |
| run: python -m pip install -Ur requirements-dev.txt | |
| - name: Compile project | |
| run: make install | |
| - name: Run basic sanity test | |
| run: python basic-sanity-test.py | |
| black: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Update black | |
| run: python -m pip install -U black | |
| - name: Run black | |
| run: python -m black --check ./*.py ./docs/ ./lib/ |