-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added edge_align plan for beam edge alignment * Need to find a better way to check signal quality. * Formatted using ruff * small formatting changes * removed unused stats import * removed another unused import * Added a check function that yields correct results * intermediate commit saving progress * finished try/except when bad signal is detected * Fixed formatting * Added scipy to environment.yaml & requirements.txt * CI #909 switch to 'ruff' * DOC #909 update release notes * MNT #909 revise per 'ruff check' * CI #909 update * Bump davidslusser/actions_python_ruff from 1.0.0 to 1.0.1 Bumps [davidslusser/actions_python_ruff](https://github.com/davidslusser/actions_python_ruff) from 1.0.0 to 1.0.1. - [Release notes](https://github.com/davidslusser/actions_python_ruff/releases) - [Commits](davidslusser/actions_python_ruff@v1.0.0...v1.0.1) --- updated-dependencies: - dependency-name: davidslusser/actions_python_ruff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * MNT #872 hoist from MPE devices * TST #872 adjust for new hoist * MNT #872 * MNT #872 refactor * MNT #872 hoist utils * DOC #912 * ENV #938 bump the minimum requirement * DOC #932 update relase notes * DOC #938 contribution from @sveseli * MNT #914 setup.py --> pyproject.toml * DOC #921 copyright year * MNT #914 * Added edge_align function for beam edge alignment * added scipy to pyproject.toml * CI #909 switch to 'ruff' * DOC badge * DOC badge * DOC #940 example scans with sscan record * DOC #940 it's only a word ... * DOC #940 * DOC #940 it's a demo, actually * DOC #940 * DOC #940 convert the blocking call to st.wait() * DOC #940 per review * DOC #940 per review * DOC #940 proofreading * DOC #940 per review, remove the section with the polling loop * DOC #940 new title * DOC #940 more proofing * DOC #940 clarify the default sscan record array size of 1,000 * DOC #940 refactor to polling loop. Show the recommended style in a details section. * DOC #940 * Added put_complete=True to sensitivity value and unit for the SRS-570 Pre-amp. * Added a test for the sensitivity_unit put_complete, and removed the put_complete from sensitivity_value. * CI #955 move requirements file * MNT #955 sphinx config * DOC #955 re-arrange * DOC #955 apply to lower-level pages * DOC #955 add docs upload * CI #955 * CI #955 * CI #955 wip * CI #955 * CI #955 * DOC #917 release note * DOC #957 merge overview into home page * DOC #955 * DOC #955 * DOC #955 * DOC #955 * Added edge_align function for beam edge alignment * Added edge_align function for beam edge alignment * Added edge_align function for beam edge alignment * DOC #909 update release notes * DOC #932 update relase notes * Added edge_align function for beam edge alignment * CI #909 switch to 'ruff' * DOC #955 * Fixed merge issue * fixed unused import * change for tests to pass * Formatting changes * Fixed repeated section * Small formatting changes * Small syntax change * Added toolz & scipy to conf.py --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Codrea <[email protected]> Co-authored-by: Pete R Jemian <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pete R Jemian <[email protected]> Co-authored-by: Mark Wolfman <[email protected]>
- Loading branch information
1 parent
5301e19
commit af11141
Showing
9 changed files
with
204 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# Exclude a variety of commonly ignored directories. | ||
exclude = [ | ||
".bzr", | ||
".direnv", | ||
".eggs", | ||
".git", | ||
".git-rewrite", | ||
".hg", | ||
".ipynb_checkpoints", | ||
".mypy_cache", | ||
".nox", | ||
".pants.d", | ||
".pyenv", | ||
".pytest_cache", | ||
".pytype", | ||
".ruff_cache", | ||
".svn", | ||
".tox", | ||
".venv", | ||
".vscode", | ||
"__pypackages__", | ||
"_build", | ||
"buck-out", | ||
"build", | ||
"dist", | ||
"node_modules", | ||
"site-packages", | ||
"venv", | ||
] | ||
|
||
# Same as Black. | ||
line-length = 115 | ||
indent-width = 4 | ||
|
||
# Assume Python 3.8 | ||
target-version = "py38" | ||
|
||
[lint] | ||
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default. | ||
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or | ||
# McCabe complexity (`C901`) by default. | ||
select = ["E4", "E7", "E9", "F"] | ||
ignore = ["E402", "E741", "F405"] | ||
|
||
# Allow fix for all enabled rules (when `--fix`) is provided. | ||
fixable = ["ALL"] | ||
unfixable = [] | ||
|
||
# Allow unused variables when underscore-prefixed. | ||
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" | ||
|
||
[lint.per-file-ignores] | ||
"__init__.py" = ["F401", "F403"] | ||
"**/{tests,docs,tools}/*" = ["E402"] | ||
|
||
[format] | ||
# Like Black, use double quotes for strings. | ||
quote-style = "double" | ||
|
||
# Like Black, indent with spaces, rather than tabs. | ||
indent-style = "space" | ||
|
||
# Like Black, respect magic trailing commas. | ||
skip-magic-trailing-comma = false | ||
|
||
# Like Black, automatically detect the appropriate line ending. | ||
line-ending = "auto" | ||
|
||
# Enable auto-formatting of code examples in docstrings. Markdown, | ||
# reStructuredText code/literal blocks and doctests are all supported. | ||
# | ||
# This is currently disabled by default, but it is planned for this | ||
# to be opt-out in the future. | ||
docstring-code-format = false | ||
|
||
# Set the line length limit used when formatting code snippets in | ||
# docstrings. | ||
# | ||
# This only has an effect when the `docstring-code-format` setting is | ||
# enabled. | ||
docstring-code-line-length = "dynamic" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,8 @@ | |
psutil | ||
pyRestTable | ||
pysumreg | ||
scipy | ||
spec2nexus | ||
toolz | ||
xarray | ||
""".split() |
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 |
---|---|---|
|
@@ -13,5 +13,6 @@ psutil | |
pyepics>=3.4.2 | ||
pyRestTable | ||
pysumreg | ||
scipy | ||
spec2nexus>=2021.1.7 | ||
xlrd |