File tree Expand file tree Collapse file tree 6 files changed +22
-22
lines changed
Expand file tree Collapse file tree 6 files changed +22
-22
lines changed Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 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
99jobs :
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 :
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
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
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Upstream CI
22on :
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
88jobs :
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
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
Original file line number Diff line number Diff line change 33
44repos :
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
Original file line number Diff line number Diff line change 55comment : false
66
77ignore :
8- - ' tests/*.py'
9- - ' setup.py'
8+ - " tests/*.py"
9+ - " setup.py"
1010
1111coverage :
1212 precision : 2
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ version: 2
22conda :
33 environment : ci/environment-docs.yml
44build :
5- os : ' ubuntu-20.04'
5+ os : " ubuntu-20.04"
66 tools :
7- python : ' mambaforge-4.10'
7+ python : " mambaforge-4.10"
You can’t perform that action at this time.
0 commit comments