Skip to content

Commit d0d2a1e

Browse files
authored
Merge pull request #61 from yoterel/master
bumpver to 0.1.2
2 parents d03523c + 01f8dc2 commit d0d2a1e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "icatcher"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "iCatcher+: Robust and automated annotation of infant gaze from videos collected in laboratory, field, and online studies."
99
readme = "README.md"
1010
authors = [{ name = "Yotam Erel", email = "erelyotam@gmail.com" }]
@@ -39,7 +39,7 @@ dev = ["pytest"]
3939
Homepage = "https://github.com/yoterel/icatcher_plus"
4040

4141
[tool.bumpver]
42-
current_version = "0.1.1"
42+
current_version = "0.1.2"
4343
version_pattern = "MAJOR.MINOR.PATCH"
4444
commit_message = "bump version {old_version} -> {new_version}"
4545
commit = false

src/icatcher/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### define version
2-
__version__ = "0.1.1"
2+
__version__ = "0.1.2"
33
version = __version__
44
### define classes
55
classes = {"noface": -2, "nobabyface": -1, "away": 0, "left": 1, "right": 2}

src/icatcher/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def load_models(opt, download_only=False):
163163
environment variable, if defined.
164164
:Windows: "C:\\Users\\<user>\\AppData\\Local\\<AppAuthor>\\<AppName>\\Cache"
165165
:param opt: command line options
166-
:param download_only: switched to true when creating docker file, and only download capabilities are needed
166+
:param download_only: if true will only download the models without loading them
167167
:return all nn models
168168
"""
169169
GOODBOY = pooch.create(

0 commit comments

Comments
 (0)