Skip to content

Commit

Permalink
Merge pull request #111 from MilagrosMarin/main
Browse files Browse the repository at this point in the history
Fix: style tests
  • Loading branch information
ttngu207 authored Jul 3, 2024
2 parents 1cf8347 + 2304d09 commit 7f2dd68
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.2.13] - 2024-07-03

+ Fix - apply formatting with `black` across the repository

## [0.2.12] - 2024-03-22

+ Add - pytest
Expand Down
4 changes: 3 additions & 1 deletion element_deeplabcut/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,9 @@ def make(self, key):
modified_time = snapshot.stat().st_mtime
if modified_time > max_modified_time:
latest_snapshot_file = snapshot
latest_snapshot = int(re.search(r"(\d+)\.index", latest_snapshot_file.name).group(1))
latest_snapshot = int(
re.search(r"(\d+)\.index", latest_snapshot_file.name).group(1)
)
max_modified_time = modified_time

# update snapshotindex in the config
Expand Down
2 changes: 1 addition & 1 deletion element_deeplabcut/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Package metadata
"""

__version__ = "0.2.12"
__version__ = "0.2.13"

0 comments on commit 7f2dd68

Please sign in to comment.