Skip to content

Minor release 4.7

Minor release 4.7 #392

Workflow file for this run

name: Black check
on: [pull_request]
jobs:
black-check:
runs-on: ubuntu-latest
name: black
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: install black
run: |
pip install black==26.3.1
- name: run black
run: |
black . --check --line-length 100 --target-version py312