Commit 174d4316 authored by Zhang, Chen's avatar Zhang, Chen
Browse files

Merge branch 'qa'

parents 11d672b8 bfc04335
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@

repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.4.0
    rev: v4.5.0
    hooks:
      - id: trailing-whitespace
      - id: check-docstring-first
@@ -25,12 +25,12 @@ repos:
      - id: end-of-file-fixer
      - id: sort-simple-yaml
  - repo: https://github.com/psf/black
    rev: 23.3.0
    rev: 24.2.0
    hooks:
      - id: black
        args: ['--line-length=119']
  - repo: https://github.com/adrienverge/yamllint.git
    rev: v1.31.0
    rev: v1.35.1
    hooks:
    - id: yamllint
    name: yamllint
@@ -39,6 +39,6 @@ repos:
    language: python
    types: [file, yaml]
  - repo: https://github.com/kynan/nbstripout
    rev: 0.6.1
    rev: 0.7.1
    hooks:
    - id: nbstripout
+2 −2
Original line number Diff line number Diff line
@@ -40,8 +40,8 @@ requirements:
    - dxchange
    - olefile
    - pooch
    - panel
    - param
    - panel<1.3
    - param<2
    - pyvista
    - holoviews
    - bokeh
+1 −0
Original line number Diff line number Diff line
"""iMars3D: a Python package for neutron imaging and tomography reconstruction."""

import logging
from .backend import corrections, diagnostics, dataio, morph, preparation, reconstruction  # noqa: F401

+1 −0
Original line number Diff line number Diff line
"""iMars3D's backend packages: the core of the application."""

from .autoredux import auto_reduction_ready  # noqa: F401
from .autoredux import load_template_config  # noqa: F401
from .autoredux import extract_info_from_path  # noqa: F401
+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ This can be invoked using

The built-in help will give the options when supplied a ``--help`` flag.
"""

from imars3d.backend.workflow.engine import WorkflowEngineAuto
import logging
from pathlib import Path
Loading