Skip to content

Commit

Permalink
small selection fix, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
cgevans committed Aug 11, 2023
1 parent 80a2e19 commit df8b5ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only
## Version 0.9.3

- Update dependencies, convert to pyproject.toml.
- Fix cycle selection and direct pandas selection for normalization processes.

## Version 0.9.2

Expand Down
2 changes: 1 addition & 1 deletion src/qslib/processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ def __init__(
raise ValueError("Selection already set, can't specify step.")
if cycle is not None:
raise ValueError("Selection already set, can't specify cycle.")
else:
self.selection = selection
else:
if stage is None:
stage = slice(None)
elif isinstance(stage, int):
Expand Down

0 comments on commit df8b5ed

Please sign in to comment.