diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bc63aca..8ac6b8c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - - package-ecosystem: 'github-actions' - directory: '/' + - package-ecosystem: "github-actions" + directory: "/" schedule: - interval: 'monthly' + interval: "monthly" diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bb1f382..49e34f0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,7 +5,7 @@ on: - main pull_request: schedule: - - cron: '0 0 * * *' # Daily “At 00:00” + - cron: "0 0 * * *" # Daily “At 00:00” workflow_dispatch: # allows you to trigger manually concurrency: @@ -29,7 +29,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v4 with: @@ -50,7 +50,7 @@ jobs: activate-environment: jupyter-forward-dev auto-update-conda: false python-version: ${{ matrix.python-version }} - mamba-version: '*' + mamba-version: "*" use-mamba: true miniforge-variant: Mambaforge environment-file: ci/environment.yml diff --git a/.github/workflows/upstream-dev-ci.yaml b/.github/workflows/upstream-dev-ci.yaml index d3f0f7c..bd59ec9 100644 --- a/.github/workflows/upstream-dev-ci.yaml +++ b/.github/workflows/upstream-dev-ci.yaml @@ -4,7 +4,7 @@ on: branches: - main schedule: - - cron: '0 0 * * *' # Daily “At 00:00” UTC + - cron: "0 0 * * *" # Daily “At 00:00” UTC workflow_dispatch: # allows you to trigger the workflow run manually concurrency: @@ -27,7 +27,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10'] + python-version: ["3.10"] steps: - uses: actions/checkout@v4 with: @@ -49,7 +49,7 @@ jobs: auto-update-conda: false python-version: ${{ matrix.python-version }} environment-file: ci/environment-upstream-dev.yml - mamba-version: '*' + mamba-version: "*" use-mamba: true miniforge-variant: Mambaforge diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 176fca1..955b5dd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,10 +19,10 @@ repos: hooks: - id: pyupgrade args: - - '--py38-plus' + - "--py38-plus" - repo: https://github.com/psf/black - rev: 23.10.1 + rev: 23.12.1 hooks: - id: black - id: black-jupyter @@ -38,11 +38,11 @@ repos: - id: flake8 - repo: https://github.com/PyCQA/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.3 + rev: v4.0.0-alpha.8 hooks: - id: prettier diff --git a/codecov.yml b/codecov.yml index aa1da5f..3961baf 100644 --- a/codecov.yml +++ b/codecov.yml @@ -5,8 +5,8 @@ codecov: comment: false ignore: - - 'tests/*.py' - - 'setup.py' + - "tests/*.py" + - "setup.py" coverage: precision: 2 diff --git a/readthedocs.yml b/readthedocs.yml index 68e5895..1aed175 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -2,6 +2,6 @@ version: 2 conda: environment: ci/environment-docs.yml build: - os: 'ubuntu-20.04' + os: "ubuntu-20.04" tools: - python: 'mambaforge-4.10' + python: "mambaforge-4.10"