Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
mhucka committed Apr 9, 2023
2 parents b1a8ab0 + 76c84d4 commit c8dfee5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

## ★ Version 1.3.0 ★

This release updates the required version of some dependencies and changes the minimum version of Python to version 3.8. There are no functional or operational changes in this release.
This release fixes issues #13 and #18, updates the required version of some dependencies, and changes the minimum version of Python to version 3.8.

Detailed changes:
* Fix issue #13: filtering by date using the `-d` option is broken.
* Fix issue #18: installations using `pipx` failed.
* Updated versions of dependencies in `requirements.txt`.
* Added `requirements-dev.txt`.
* Improved `codemeta.json`.
Expand Down
2 changes: 1 addition & 1 deletion zowie/main_body.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def _do_preflight(self):
if __debug__: log(f'filtering files by date {self.after_date_str}')
kept = []
tzinfo = self.after_date.tzinfo
for file in self.files:
for file in self._targets:
mtime = datetime.fromtimestamp(Path(file).stat().st_mtime)
if mtime.replace(tzinfo = tzinfo) >= self.after_date:
if __debug__: log(f'keeping {file}')
Expand Down

0 comments on commit c8dfee5

Please sign in to comment.