File tree Expand file tree Collapse file tree 4 files changed +17
-14
lines changed Expand file tree Collapse file tree 4 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 1- # To get started with Dependabot version updates, you'll need to specify which
2- # package ecosystems to update and where the package manifests are located.
3- # Please see the documentation for all configuration options:
4- # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61version : 2
72updates :
8- - package-ecosystem : " pip" # See documentation for possible values
9- directory : " /" # Location of package manifests
3+ # Maintain dependencies for GitHub Actions
4+ - package-ecosystem : " github-actions"
5+ directory : " /"
106 schedule :
117 interval : " weekly"
12- reviewers :
13- - " AlecThomson"
8+ groups :
9+ actions :
10+ patterns :
11+ - " *"
Original file line number Diff line number Diff line change 1+ changelog :
2+ exclude :
3+ authors :
4+ - dependabot
5+ - pre-commit-ci
Original file line number Diff line number Diff line change 44
55repos :
66 - repo : https://github.com/adamchainz/blacken-docs
7- rev : " 1.19.1 "
7+ rev : " 1.20.0 "
88 hooks :
99 - id : blacken-docs
1010 additional_dependencies : [black==24.*]
1111
1212 - repo : https://github.com/pre-commit/pre-commit-hooks
13- rev : " v5 .0.0"
13+ rev : " v6 .0.0"
1414 hooks :
1515 - id : check-added-large-files
1616 - id : check-case-conflict
3333 - id : rst-inline-touching-normal
3434
3535 - repo : https://github.com/astral-sh/ruff-pre-commit
36- rev : " v0.12.3 "
36+ rev : " v0.13.0 "
3737 hooks :
3838 - id : ruff
3939 args : ["--fix", "--show-fixes"]
5454 additional_dependencies : ["validate-pyproject-schema-store[all]"]
5555
5656 - repo : https://github.com/python-jsonschema/check-jsonschema
57- rev : " 0.33.2 "
57+ rev : " 0.33.3 "
5858 hooks :
5959 - id : check-dependabot
6060 - id : check-github-workflows
Original file line number Diff line number Diff line change 1616import numpy as np
1717import pymongo
1818from astropy .time import Time , TimeDelta
19- from FRion import correct , predict
2019from prefect import flow , get_run_logger , task
2120from tqdm .auto import tqdm
2221
2928)
3029from arrakis .utils .fitsutils import getfreq
3130from arrakis .utils .pipeline import generic_parser , logo_str , workdir_arg_parser
31+ from FRion import correct , predict
3232
3333logger .setLevel (logging .INFO )
3434TQDM_OUT = TqdmToLogger (logger , level = logging .INFO )
You can’t perform that action at this time.
0 commit comments