You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update LS version
* Update DM
* Update converter and version
* fix: DEV-1683: Relax dependencies or allow botocore==1.19.52
* Update version to 1.4.1rc2
* Change version to 1.4.1
* fix: parsed_label_config bug (#2018)
* fix: parsed_label_config cache bug
* Update version
* Update version again
* Update __init__.py
* Move save after parsed config
* Fix tests
* Add migration
* Speed up tests with xdist
* Update pytest libs
* Another try for speed up
* Update pytest-cov
* Try another pytest-cov version
* Prebuild without frontend for pytests
* Skip cov tests on windows
* Another win tests try :-)
* Pytest with python3
* Move pip to python -m
* Add pytest install into test section
* Fix deps for tests
field=models.IntegerField(default=0, help_text='Minimum number of completed tasks after which model training is started', verbose_name='min_annotations_to_start_training'),
17
+
),
18
+
migrations.RemoveField(
19
+
model_name='project',
20
+
name='parsed_label_config',
21
+
),
22
+
migrations.AddField(
23
+
model_name='project',
24
+
name='parsed_label_config',
25
+
field=models.JSONField(blank=True, default=None, help_text='Parsed label config in JSON format. See more about it in documentation', null=True, verbose_name='parsed label config'),
0 commit comments