-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump * register led default * refactor rundb * plotting tools * plugins and analyses * fix auto processing * fix auto processing * fix newlines * fix requirements * fix requirements * try to get tests ok * try tests * no
- Loading branch information
Showing
32 changed files
with
2,735 additions
and
485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
__version__ = '1.2.0' | ||
|
||
from . import plugins | ||
from .plugins import * | ||
__version__ = "1.2.1" | ||
|
||
from .common import * | ||
from .rundb import * | ||
|
||
from . import plugins | ||
from .plugins import * | ||
|
||
from . import contexts | ||
|
||
from . import hitfinder_thresholds | ||
from .hitfinder_thresholds import * | ||
|
||
from . import auto_processing | ||
|
||
from .mini_analysis import * | ||
|
||
from .matplotlib_utils import * | ||
|
||
from . import analyses |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from . import plotting | ||
from . import waveform_plot | ||
from . import records_matrix | ||
from . import quick_checks |
Oops, something went wrong.