Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fba_rerun: handle custom_too_development argument #458

Merged
merged 3 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/fba_rerun
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def main():
# AR handling of the "action_store=True" arguments..
# AR - if True, we keep the argument name
# AR - if False, we remove
if key in ["--log_stdout", "--worldreadable", "--targ_std_only", "--too_tile"]:
if key in ["--log_stdout", "--worldreadable", "--targ_std_only", "--too_tile", "--custom_too_development"]:
if val == "False":
continue
else:
Expand Down
2 changes: 2 additions & 0 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ fiberassign change log
5.7.2 (unreleased)
------------------

* fba_rerun: handle custom_too_development argument (PR `#458`_).
* Use chmod to make sure that permissions get set to their intended values (PR `#457`_).
* Update ReadTheDocs configuration (PR `#459`_).
* Add Assignment.check_avail_collisions(tile, all_matches=False) to check potential assignments for collisions (PR `#454`_).
Expand All @@ -15,6 +16,7 @@ fiberassign change log
.. _`#454`: https://github.com/desihub/fiberassign/pull/454
.. _`#459`: https://github.com/desihub/fiberassign/pull/459
.. _`#457`: https://github.com/desihub/fiberassign/pull/457
.. _`#458`: https://github.com/desihub/fiberassign/pull/458

5.7.1 (2023-02-06)
------------------
Expand Down
Loading