Skip to content

Commit 7c424ac

Browse files
[pre-commit.ci] pre-commit autoupdate (#29)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 124fd73 commit 7c424ac

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ updates:
44
# directory: "/"
55
# schedule:
66
# interval: daily
7-
- package-ecosystem: 'github-actions'
8-
directory: '/'
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
99
schedule:
1010
# Check for updates once a week
11-
interval: 'weekly'
11+
interval: "weekly"

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
pull_request:
55
schedule:
6-
- cron: '0 0 * * *' # Daily “At 00:00”
6+
- cron: "0 0 * * *" # Daily “At 00:00”
77
workflow_dispatch: # allows you to trigger manually
88

99
jobs:
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
# For workflows which are triggered concurrently with the same
2121
# contents, attempt to execute them exactly once.
22-
concurrent_skipping: 'same_content_newer'
22+
concurrent_skipping: "same_content_newer"
2323
paths_ignore: '["**/doc/**"]'
2424

2525
build:
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
python-version: ['3.8', '3.9', '3.10']
36+
python-version: ["3.8", "3.9", "3.10"]
3737
steps:
3838
- uses: actions/checkout@v3
3939
- uses: conda-incubator/setup-miniconda@v2
@@ -44,7 +44,7 @@ jobs:
4444
auto-update-conda: false
4545
python-version: ${{ matrix.python-version }}
4646
environment-file: ci/environment.yml
47-
mamba-version: '*'
47+
mamba-version: "*"
4848
use-mamba: true
4949
miniforge-variant: Mambaforge
5050

.github/workflows/upstream-dev-ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Upstream CI
22
on:
33
push:
44
schedule:
5-
- cron: '0 0 * * *' # Daily “At 00:00” UTC
5+
- cron: "0 0 * * *" # Daily “At 00:00” UTC
66
workflow_dispatch: # allows you to trigger the workflow run manually
77

88
jobs:
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ['3.10']
18+
python-version: ["3.10"]
1919
steps:
2020
- uses: actions/checkout@v3
2121
- uses: conda-incubator/setup-miniconda@v2
@@ -27,7 +27,7 @@ jobs:
2727
auto-update-conda: false
2828
python-version: ${{ matrix.python-version }}
2929
environment-file: ci/upstream-dev-environment.yml
30-
mamba-version: '*'
30+
mamba-version: "*"
3131
use-mamba: true
3232
miniforge-variant: Mambaforge
3333

.pre-commit-config.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ci:
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.3.0
6+
rev: v4.6.0
77
hooks:
88
- id: trailing-whitespace
99
- id: end-of-file-fixer
@@ -15,33 +15,33 @@ repos:
1515
- id: mixed-line-ending
1616

1717
- repo: https://github.com/asottile/pyupgrade
18-
rev: v2.37.3
18+
rev: v3.15.2
1919
hooks:
2020
- id: pyupgrade
2121
args:
22-
- '--py37-plus'
22+
- "--py37-plus"
2323

2424
- repo: https://github.com/psf/black
25-
rev: 22.8.0
25+
rev: 24.4.2
2626
hooks:
2727
- id: black-jupyter
2828

2929
- repo: https://github.com/keewis/blackdoc
30-
rev: v0.3.6
30+
rev: v0.3.9
3131
hooks:
3232
- id: blackdoc
3333

3434
- repo: https://github.com/PyCQA/flake8
35-
rev: 5.0.4
35+
rev: 7.0.0
3636
hooks:
3737
- id: flake8
3838

3939
- repo: https://github.com/PyCQA/isort
40-
rev: 5.10.1
40+
rev: 5.13.2
4141
hooks:
4242
- id: isort
4343

4444
- repo: https://github.com/pre-commit/mirrors-prettier
45-
rev: v3.0.0-alpha.0
45+
rev: v4.0.0-alpha.8
4646
hooks:
4747
- id: prettier

codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ codecov:
55
comment: false
66

77
ignore:
8-
- 'tests/*.py'
9-
- 'setup.py'
8+
- "tests/*.py"
9+
- "setup.py"
1010

1111
coverage:
1212
precision: 2

readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ version: 2
22
conda:
33
environment: ci/environment-docs.yml
44
build:
5-
os: 'ubuntu-20.04'
5+
os: "ubuntu-20.04"
66
tools:
7-
python: 'mambaforge-4.10'
7+
python: "mambaforge-4.10"

0 commit comments

Comments
 (0)