-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move to pyproject.toml * add pre-commit * fix CI * Update README.md * limit pre-commit to python, yaml, json & toml * add more pre-commit hooks * Update installation.rst * update versioning scheme * Update conf.py * Update developer_guide.rst * move some paragraphs from README.MD to sphinx docu * Update pyproject.toml * Update developer_guide.rst * Update developer_guide.rst * Update pyproject.toml * Update __init__.py * Update main.yaml * update suggested git-command for updating * add upgrade_iblrig command * some minor fixes * Update version_management.py * rescue lost changes from #502 * when the number of expected devices is undefined, do not raise but warn and exit * Copy (#503) * WIP recover from partial copy multiple devices * copier hierarchy * Update transfer_experiments.py * Update transfer_experiments.py * modify acquisition description aggregation level from copiers * add the script to copy video data / purge sessions older than 2 weeks * Fix chained protocols bug * bugfix: the criteria to end the task should not factor in the delay period --------- Co-authored-by: Florian Rau <[email protected]> --------- Co-authored-by: olivier <[email protected]>
- Loading branch information
Showing
31 changed files
with
357 additions
and
218 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 |
---|---|---|
|
@@ -5,4 +5,4 @@ exclude = | |
.git, | ||
scratch_*.py, | ||
Bonsai, | ||
venv* | ||
venv* |
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
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
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,31 @@ | ||
repos: | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: end-of-file-fixer | ||
types_or: [python, yaml, json, toml] | ||
- id: trailing-whitespace | ||
types_or: [python, yaml, json, toml] | ||
- id: check-case-conflict | ||
- id: check-docstring-first | ||
- id: check-ast | ||
- id: check-yaml | ||
- id: check-json | ||
- id: check-toml | ||
- id: check-xml | ||
- id: check-vcs-permalinks | ||
- id: detect-private-key | ||
|
||
- repo: https://github.com/pre-commit/pygrep-hooks | ||
rev: v1.10.0 | ||
hooks: | ||
- id: python-check-blanket-type-ignore | ||
- id: python-use-type-annotations | ||
- id: python-no-log-warn | ||
- id: text-unicode-replacement-char | ||
|
||
- repo: https://github.com/pycqa/flake8 | ||
rev: 6.1.0 | ||
hooks: | ||
- id: flake8 |
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
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
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
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
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
Oops, something went wrong.