Skip to content

Commit f9302fb

Browse files
author
Alec Thomson
committed
Pre commit
1 parent 2906add commit f9302fb

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
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-
61
version: 2
72
updates:
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+
- "*"

.github/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
changelog:
2+
exclude:
3+
authors:
4+
- dependabot
5+
- pre-commit-ci

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ ci:
44

55
repos:
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
@@ -33,7 +33,7 @@ repos:
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"]
@@ -54,7 +54,7 @@ repos:
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

arrakis/frion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import numpy as np
1717
import pymongo
1818
from astropy.time import Time, TimeDelta
19-
from FRion import correct, predict
2019
from prefect import flow, get_run_logger, task
2120
from tqdm.auto import tqdm
2221

@@ -29,6 +28,7 @@
2928
)
3029
from arrakis.utils.fitsutils import getfreq
3130
from arrakis.utils.pipeline import generic_parser, logo_str, workdir_arg_parser
31+
from FRion import correct, predict
3232

3333
logger.setLevel(logging.INFO)
3434
TQDM_OUT = TqdmToLogger(logger, level=logging.INFO)

0 commit comments

Comments
 (0)