Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b5a5e3d
switching branches to deal with id presesnce
VahagnTKA Sep 15, 2022
2993871
adding id
VahagnTKA Sep 15, 2022
b299d21
Merge branch '1349_item_id' into 1304_add_items_to_subset
VahagnTKA Sep 15, 2022
d4cfb5e
finishing up with add_items_to_subset
VahagnTKA Sep 19, 2022
7b402db
adressing PR comments
VahagnTKA Sep 22, 2022
8eb45b3
more PR fixes
VahagnTKA Sep 22, 2022
a4fa568
Updated pydantic verison
VaghinakDev Sep 22, 2022
df1ed32
Fix pep8 issues and docs
VaghinakDev Sep 22, 2022
03b2952
Merge pull request #503 from superannotateai/1304_add_items_to_subset
VaghinakDev Sep 22, 2022
6e60f56
Merge pull request #504 from superannotateai/1373_pydantic
VaghinakDev Sep 22, 2022
14f9fc1
Update __init__.py
VaghinakDev Sep 22, 2022
9960a5b
Added deprication msg
VaghinakDev Sep 22, 2022
f5592e8
fixing images with no ids case
VahagnTKA Sep 26, 2022
5def65b
Merge pull request #507 from superannotateai/1304_add_items_to_subset
TumanyanV Sep 26, 2022
c9b2127
Update __init__.py
TumanyanV Sep 26, 2022
0d2cad4
fixing duplicate skip and success items issue
VahagnTKA Sep 28, 2022
bc7b13b
changind dev version and merging with latest friday
VahagnTKA Sep 28, 2022
fa9c680
make validate
VahagnTKA Sep 28, 2022
93e9569
Merge pull request #508 from superannotateai/1304_add_items_to_subset
TumanyanV Sep 28, 2022
c64b2c1
Merge pull request #505 from superannotateai/1385
VaghinakDev Sep 29, 2022
151361c
Merge branch 'develop' into friday
VaghinakDev Sep 29, 2022
605ccbc
Merge branch 'develop' into friday
VaghinakDev Sep 29, 2022
ad59b54
Merge branch 'develop' into friday
VaghinakDev Sep 29, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/superannotate.sdk.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ Subsets
______

.. automethod:: superannotate.SAClient.get_subsets
.. automethod:: superannotate.SAClient.add_items_to_subset

----------

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plotly==4.1.0
ffmpeg-python>=0.2.0
fire==0.4.0
mixpanel==4.8.3
pydantic>=1.8.2
pydantic>=1.10.2
setuptools~=57.4.0
aiohttp==3.8.1
email-validator>=1.0.3
Expand Down
1 change: 1 addition & 0 deletions src/superannotate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import sys


__version__ = "4.4.5dev7"

sys.path.append(os.path.split(os.path.realpath(__file__))[0])
Expand Down
Loading