File tree Expand file tree Collapse file tree 6 files changed +27
-36
lines changed
Expand file tree Collapse file tree 6 files changed +27
-36
lines changed Original file line number Diff line number Diff line change 77All release highlights of this project will be documented in this file.
88
994.4.12 - April 23, 2023
10- ______________________
10+ _______________________
1111
1212**Updated **
1313
Original file line number Diff line number Diff line change 1- pydicom >= 2.0.0
2- boto3 >= 1.14.53
1+ pydantic ~= 1.10
2+ aiohttp ~= 3.8
3+ boto3 ~= 1.26
4+ opencv-python ~= 4.7
5+ packaging ~= 23.1
6+ plotly ~= 5.14
7+ email-validator ~= 2.0
8+ pandas ~= 1.3
9+ ffmpeg-python ~= 0.2
10+ pillow ~= 9.5
11+ aiofiles == 0.8.0
312requests == 2.28.2
4- requests-toolbelt >= 0.9.1
5- aiohttp >= 3.8.1
613tqdm == 4.64.0
7- pillow == 9.4.0
8- matplotlib >= 3.3.1
9- xmltodict == 0.12.0
10- opencv-python >= 4.4.0.42
11- wheel >= 0.40.0
12- packaging >= 20.4
13- plotly >= 4.1.0
14- ffmpeg-python >= 0.2.0
1514fire == 0.4.0
1615mixpanel == 4.8.3
17- pydantic >= 1.10.7
18- setuptools >= 57.4.0
19- email-validator >= 1.0.3
2016jsonschema == 3.2.0
21- pandas >= 1.1.4
22- aiofiles == 0.8.0
Original file line number Diff line number Diff line change 1+ setuptools~=67.7
2+ wheel~=0.40
13Sphinx==6.2.1
2- Jinja2==3.1.2
3- tox==4.4.5
4+ tox==4.5.1
45sphinx_rtd_theme==1.2.0
5- furo==2022.12.7
6- jaraco.tidelift==1.5.0
6+ furo==2023.3.27
7+ jaraco.tidelift==1.5.1
78sphinx-notfound-page==0.8.3
8- sphinx_inline_tabs==2022.1.2b11
9- pytest==7.2 .1
10- pytest-xdist==3.2.0
9+ sphinx_inline_tabs==2023.4.21
10+ pytest==7.3 .1
11+ pytest-xdist==3.2.1
1112pytest-parallel==0.1.1
1213pytest-cov==4.0.0
13- pytest-rerunfailures==10 .2
14+ pytest-rerunfailures==11.1 .2
Original file line number Diff line number Diff line change 11import logging
22import os
33import sys
4- import typing
54
65__version__ = "4.4.12"
76
Original file line number Diff line number Diff line change @@ -199,13 +199,6 @@ def test_attach_document_urls(self):
199199 )
200200 self .assertEqual (3 , len (sa .search_items (self .PROJECT_NAME )))
201201
202- def test_create_server (self ):
203- with tempfile .TemporaryDirectory () as temp_dir :
204- self ._cli .create_server ("test" , temp_dir )
205- # self._cli.create_server('testo', '/Users/vaghinak.basentsyan/www/for_fun')
206- assert (Path (temp_dir ) / "test" / "app.py" ).exists ()
207- assert (Path (temp_dir ) / "test" / "wsgi.py" ).exists ()
208-
209202 def test_init (self ):
210203 _token = "asd=123"
211204 with tempfile .TemporaryDirectory () as config_dir :
Original file line number Diff line number Diff line change @@ -50,7 +50,9 @@ def test_empty_multiselect_bool_serializer(self):
5050 annotation_class = AnnotationClassEntity (
5151 name = "asd" ,
5252 color = "blue" ,
53- attribute_groups = [AttributeGroup (name = "sad" , is_multiselect = "True" )], # noqa
53+ attribute_groups = [
54+ AttributeGroup (name = "sad" , is_multiselect = "True" )
55+ ], # noqa
5456 )
5557 serializer_data = json .loads (json .dumps (annotation_class , cls = PydanticEncoder ))
5658 assert {
@@ -66,7 +68,9 @@ def test_group_type_wrong_arg(self):
6668 name = "asd" ,
6769 color = "blue" ,
6870 attribute_groups = [
69- AttributeGroup (name = "sad" , is_multiselect = True , group_type = "asd" ) # noqa
71+ AttributeGroup (
72+ name = "sad" , is_multiselect = True , group_type = "asd"
73+ ) # noqa
7074 ],
7175 )
7276 except ValidationError as e :
You can’t perform that action at this time.
0 commit comments