Skip to content

Commit ff18b80

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 096e10f commit ff18b80

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/dependabot.yml

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

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 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
concurrency:
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: ['3.7', '3.8', '3.9', '3.10']
24+
python-version: ["3.7", "3.8", "3.9", "3.10"]
2525
steps:
2626
- uses: actions/checkout@v3
2727
- uses: conda-incubator/setup-miniconda@v2
@@ -31,7 +31,7 @@ jobs:
3131
activate-environment: xcollection-dev
3232
auto-update-conda: false
3333
python-version: ${{ matrix.python-version }}
34-
mamba-version: '*'
34+
mamba-version: "*"
3535
use-mamba: true
3636
miniforge-variant: Mambaforge
3737
environment-file: ci/environment.yml

.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
concurrency:
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: ['3.10']
22+
python-version: ["3.10"]
2323
steps:
2424
- uses: actions/checkout@v3
2525
- uses: conda-incubator/setup-miniconda@v2
@@ -31,7 +31,7 @@ jobs:
3131
auto-update-conda: false
3232
python-version: ${{ matrix.python-version }}
3333
environment-file: ci/environment-upstream-dev.yml
34-
mamba-version: '*'
34+
mamba-version: "*"
3535
use-mamba: true
3636
miniforge-variant: Mambaforge
3737

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)