Update ownership notice in README.md #51
  
    
      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: | |
| branches: | |
| - main | |
| pull_request: ~ | |
| env: | |
| DEFAULT_PYTHON: "3.12" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| style: | |
| runs-on: ubuntu-latest | |
| name: Check style formatting | |
| steps: | |
| - name: Check out code from GitHub | |
| uses: actions/checkout@v5 | |
| - name: Setup python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ env.DEFAULT_PYTHON }} | |
| - name: Check code formatting with black | |
| uses: psf/black@stable | |
| - name: Check code formatting with isort | |
| uses: isort/isort-action@master | |
| with: | |
| requirementsFiles: "requirements.txt requirements_dev.txt" |