Update version to v1.3.3
This commit is contained in:
parent
550c4581ec
commit
b7a614d264
@ -8,6 +8,7 @@ except ImportError:
|
|||||||
|
|
||||||
from base64 import b64encode, b64decode
|
from base64 import b64encode, b64decode
|
||||||
from pascal_voc_io import PascalVocWriter
|
from pascal_voc_io import PascalVocWriter
|
||||||
|
from pascal_voc_io import XML_EXT
|
||||||
import os.path
|
import os.path
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
@ -17,8 +18,9 @@ class LabelFileError(Exception):
|
|||||||
|
|
||||||
|
|
||||||
class LabelFile(object):
|
class LabelFile(object):
|
||||||
# It might be changed as window creates
|
# It might be changed as window creates. By default, using XML ext
|
||||||
suffix = '.xml'
|
# suffix = '.lif'
|
||||||
|
suffix = XML_EXT
|
||||||
|
|
||||||
def __init__(self, filename=None):
|
def __init__(self, filename=None):
|
||||||
self.shapes = ()
|
self.shapes = ()
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 1.3.2
|
current_version = 1.3.3
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@ -21,7 +21,7 @@ test_requirements = [
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='labelImg',
|
name='labelImg',
|
||||||
version='1.3.2',
|
version='1.3.3',
|
||||||
description="LabelImg is a graphical image annotation tool and label object bounding boxes in images",
|
description="LabelImg is a graphical image annotation tool and label object bounding boxes in images",
|
||||||
long_description=readme + '\n\n' + history,
|
long_description=readme + '\n\n' + history,
|
||||||
author="TzuTa Lin",
|
author="TzuTa Lin",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user