Skip to content

Bump setuptools-scm from 6.4.2 to 8.0.1 #169

Bump setuptools-scm from 6.4.2 to 8.0.1

Bump setuptools-scm from 6.4.2 to 8.0.1 #169

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
with:
set-safe-directory: 'false'
submodules: 'recursive'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
env:
DOCUTILS: 0.19
run: |
pip install -U pip
pip install docutils==$DOCUTILS
pip install -r requirements.txt
pip install -e .
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build Theme
run: |
make -C demo html SPHINXOPTS="-D html_theme=sphinx_adc_theme"