Skip to content

Commit 5363c9e

Browse files
authored
Merge pull request #11 from DeepLabCut/v0.0.3
Update version and add dog to list of models
2 parents bbdca9d + b447cfa commit 5363c9e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/test_package.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ jobs:
2727
python -m pip install --upgrade pip
2828
pip install pytest
2929
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30-
pip install .
30+
31+
- name: Install DLClibrary
32+
run: pip install .
3133

3234
- name: Run pytest tests
3335
run: |
34-
pytest
36+
pytest

dlclibrary/dlcmodelzoo/modelzoo_download.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
MODELOPTIONS = [
1616
"full_human",
1717
"full_cat",
18+
"full_dog",
1819
"primate_face",
1920
"mouse_pupil_vclose",
2021
"horse_sideview",

dlclibrary/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# Licensed under GNU Lesser General Public License v3.0
1010
#
1111

12-
__version__ = "0.0.2"
12+
__version__ = "0.0.3"
1313
VERSION = __version__

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setuptools.setup(
1717
name="dlclibrary",
18-
version="0.0.2",
18+
version="0.0.3",
1919
author="A. & M. Mathis Labs",
2020
author_email="alexander@deeplabcut.org",
2121
description="Lightweight library supporting universal functions for the DeepLabCut ecosystem",

0 commit comments

Comments
 (0)