Skip to content

Commit c7c89b5

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

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

.github/ISSUE_TEMPLATE/bugreport.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Bug Report
22
description: File a bug report to help us improve
3-
title: '[Bug]: '
3+
title: "[Bug]: "
44
labels: [bug, triage]
55
assignees: []
66
body:
@@ -16,7 +16,7 @@ body:
1616
Describe what you were trying to get done.
1717
Tell us what happened, what went wrong, and what you expected to happen.
1818
placeholder: Tell us what you see!
19-
value: 'A bug happened!'
19+
value: "A bug happened!"
2020
validations:
2121
required: true
2222
- type: textarea
@@ -50,7 +50,7 @@ body:
5050
label: Which Python version are you using?
5151
multiple: true
5252
options:
53-
- '3.7'
54-
- '3.8'
55-
- '3.9'
56-
- '3.10'
53+
- "3.7"
54+
- "3.8"
55+
- "3.9"
56+
- "3.10"

.github/dependabot.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ updates:
44
# directory: '/'
55
# schedule:
66
# interval: 'weekly'
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

+3-3
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: xpersist-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

+3-3
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/upstream-dev-environment.yml
34-
mamba-version: '*'
34+
mamba-version: "*"
3535
use-mamba: true
3636
miniforge-variant: Mambaforge
3737

codecov.yml

+2-2
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

+2-2
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)