omniopt2 8474__py3-none-any.whl → 8477__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of omniopt2 might be problematic. Click here for more details.
- .helpers.py +1 -1
- .omniopt.py +5 -1
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.helpers.py +1 -1
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt.py +5 -1
- {omniopt2-8474.dist-info → omniopt2-8477.dist-info}/METADATA +1 -1
- {omniopt2-8474.dist-info → omniopt2-8477.dist-info}/RECORD +37 -37
- omniopt2.egg-info/PKG-INFO +1 -1
- pyproject.toml +1 -1
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.colorfunctions.sh +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.general.sh +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_cpu_ram_usage.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_general.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_gpu_usage.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_kde.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_scatter.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_scatter_generation_method.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_scatter_hex.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_time_and_exit_code.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_trial_index_result.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_worker.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.random_generator.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.shellscript_functions +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/.tpe.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/LICENSE +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/apt-dependencies.txt +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/omniopt +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/omniopt_docker +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/omniopt_evaluate +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/omniopt_plot +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/omniopt_share +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/pylint.rc +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/requirements.txt +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/setup.py +0 -0
- {omniopt2-8474.data → omniopt2-8477.data}/data/bin/test_requirements.txt +0 -0
- {omniopt2-8474.dist-info → omniopt2-8477.dist-info}/WHEEL +0 -0
- {omniopt2-8474.dist-info → omniopt2-8477.dist-info}/licenses/LICENSE +0 -0
- {omniopt2-8474.dist-info → omniopt2-8477.dist-info}/top_level.txt +0 -0
.helpers.py
CHANGED
|
@@ -229,7 +229,7 @@ def print_color(color: str, text: str) -> None:
|
|
|
229
229
|
|
|
230
230
|
def check_python_version() -> None:
|
|
231
231
|
python_version = platform.python_version()
|
|
232
|
-
supported_versions = ["3.
|
|
232
|
+
supported_versions = ["3.10.4", "3.10.12", "3.11.2", "3.11.9", "3.9.2", "3.11.3", "3.12.3", "3.12.4", "3.12.5", "3.12.6", "3.12.7", "3.12.7+", "3.12.8", "3.13.1", "3.13.2", "3.13.3", "3.13.5", "3.13.7"]
|
|
233
233
|
if python_version not in supported_versions:
|
|
234
234
|
print_color("yellow", f"Warning: Supported python versions are {', '.join(supported_versions)}, but you are running {python_version}. This may or may not cause problems. Just is just a warning.")
|
|
235
235
|
|
.omniopt.py
CHANGED
|
@@ -1235,11 +1235,15 @@ for _rn in args.result_names:
|
|
|
1235
1235
|
_key = _rn
|
|
1236
1236
|
_min_or_max = __default_min_max
|
|
1237
1237
|
|
|
1238
|
+
_min_or_max = re.sub(r"'", "", _min_or_max)
|
|
1239
|
+
|
|
1238
1240
|
if _min_or_max not in ["min", "max"]:
|
|
1239
1241
|
if _min_or_max:
|
|
1240
1242
|
print_yellow(f"Value for determining whether to minimize or maximize was neither 'min' nor 'max' for key '{_key}', but '{_min_or_max}'. It will be set to the default, which is '{__default_min_max}' instead.")
|
|
1241
1243
|
_min_or_max = __default_min_max
|
|
1242
1244
|
|
|
1245
|
+
_key = re.sub(r"'", "", _key)
|
|
1246
|
+
|
|
1243
1247
|
if _key in arg_result_names:
|
|
1244
1248
|
console.print(f"[red]The --result_names option '{_key}' was specified multiple times![/]")
|
|
1245
1249
|
sys.exit(50)
|
|
@@ -2080,7 +2084,7 @@ def live_share(force: bool = False, text_and_qr: bool = False) -> bool:
|
|
|
2080
2084
|
if stderr:
|
|
2081
2085
|
print_green(stderr)
|
|
2082
2086
|
else:
|
|
2083
|
-
print_red("This call should have shown the CURL, but didnt. Stderr: {stderr}, stdout: {stdout}")
|
|
2087
|
+
print_red(f"This call should have shown the CURL, but didnt. Stderr: {stderr}, stdout: {stdout}")
|
|
2084
2088
|
if stdout:
|
|
2085
2089
|
print_debug(f"live_share stdout: {stdout}")
|
|
2086
2090
|
|
|
@@ -229,7 +229,7 @@ def print_color(color: str, text: str) -> None:
|
|
|
229
229
|
|
|
230
230
|
def check_python_version() -> None:
|
|
231
231
|
python_version = platform.python_version()
|
|
232
|
-
supported_versions = ["3.
|
|
232
|
+
supported_versions = ["3.10.4", "3.10.12", "3.11.2", "3.11.9", "3.9.2", "3.11.3", "3.12.3", "3.12.4", "3.12.5", "3.12.6", "3.12.7", "3.12.7+", "3.12.8", "3.13.1", "3.13.2", "3.13.3", "3.13.5", "3.13.7"]
|
|
233
233
|
if python_version not in supported_versions:
|
|
234
234
|
print_color("yellow", f"Warning: Supported python versions are {', '.join(supported_versions)}, but you are running {python_version}. This may or may not cause problems. Just is just a warning.")
|
|
235
235
|
|
|
@@ -1235,11 +1235,15 @@ for _rn in args.result_names:
|
|
|
1235
1235
|
_key = _rn
|
|
1236
1236
|
_min_or_max = __default_min_max
|
|
1237
1237
|
|
|
1238
|
+
_min_or_max = re.sub(r"'", "", _min_or_max)
|
|
1239
|
+
|
|
1238
1240
|
if _min_or_max not in ["min", "max"]:
|
|
1239
1241
|
if _min_or_max:
|
|
1240
1242
|
print_yellow(f"Value for determining whether to minimize or maximize was neither 'min' nor 'max' for key '{_key}', but '{_min_or_max}'. It will be set to the default, which is '{__default_min_max}' instead.")
|
|
1241
1243
|
_min_or_max = __default_min_max
|
|
1242
1244
|
|
|
1245
|
+
_key = re.sub(r"'", "", _key)
|
|
1246
|
+
|
|
1243
1247
|
if _key in arg_result_names:
|
|
1244
1248
|
console.print(f"[red]The --result_names option '{_key}' was specified multiple times![/]")
|
|
1245
1249
|
sys.exit(50)
|
|
@@ -2080,7 +2084,7 @@ def live_share(force: bool = False, text_and_qr: bool = False) -> bool:
|
|
|
2080
2084
|
if stderr:
|
|
2081
2085
|
print_green(stderr)
|
|
2082
2086
|
else:
|
|
2083
|
-
print_red("This call should have shown the CURL, but didnt. Stderr: {stderr}, stdout: {stdout}")
|
|
2087
|
+
print_red(f"This call should have shown the CURL, but didnt. Stderr: {stderr}, stdout: {stdout}")
|
|
2084
2088
|
if stdout:
|
|
2085
2089
|
print_debug(f"live_share stdout: {stdout}")
|
|
2086
2090
|
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
.dockerignore,sha256=vtgV4tvVZdmusf1z7MYscSBo_UTtHMG6T7Knb4llBvo,11
|
|
3
3
|
.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
|
4
4
|
.gitignore,sha256=GmSD6dE4AqN4_fhQUdAzydst60s3w3ePYxetTr3Et7c,3776
|
|
5
|
-
.helpers.py,sha256=
|
|
6
|
-
.omniopt.py,sha256=
|
|
5
|
+
.helpers.py,sha256=molXL_FxSckKszS9-eIFCD3XOntVlPgAez4KAjQhJjo,31436
|
|
6
|
+
.omniopt.py,sha256=IoGzrhiRynxMB-Q4eMbnmbBu-wuGS5q5LeRpaC1vv1w,438994
|
|
7
7
|
.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
|
8
8
|
.omniopt_plot_general.py,sha256=3iy-bPef8I5rTB3KRz-TuleMdgKDmVZ6c8LuNQhNwu0,6810
|
|
9
9
|
.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
|
@@ -26,46 +26,46 @@ omniopt_docker,sha256=XyEGZ71l-tUlAYUluVF39fGO3NLDRa8UyrwxmAsXWNI,3542
|
|
|
26
26
|
omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
|
27
27
|
omniopt_plot,sha256=ze6Dz2k0w5jyUnfatAA7dk59nzQjKC_G36tDvJGWsfA,13696
|
|
28
28
|
omniopt_share,sha256=2KZcTjN_7vcxNjb4sLLiWgUc38pl2-6-Qwmgq6_nTb0,13856
|
|
29
|
-
pyproject.toml,sha256=
|
|
29
|
+
pyproject.toml,sha256=KU4wxjpnLNtrbQaVGIh4EhG9GbnZSk3Xehw6ueNx4U4,397
|
|
30
30
|
requirements.txt,sha256=0ViG5vdrDP--nr7mbZbV0ayJc6a5APNlTiMqGEZB6qE,292
|
|
31
31
|
setup.cfg,sha256=HEc8uu6NpfxG5_AVh5SvXOpEFMNKPPPxgMIAH144vT4,38
|
|
32
32
|
test_requirements.txt,sha256=jpyZzAwbWR_qnoRqWvpBB5MUjIX9jVwynX2D-B-r8aA,487
|
|
33
33
|
.tests/pylint.rc,sha256=ZGtZjVgJtK_6tdwgscJneS-LUeDASjSVVz6veCkp9rw,22631
|
|
34
|
-
omniopt2-
|
|
35
|
-
omniopt2-
|
|
36
|
-
omniopt2-
|
|
37
|
-
omniopt2-
|
|
38
|
-
omniopt2-
|
|
39
|
-
omniopt2-
|
|
40
|
-
omniopt2-
|
|
41
|
-
omniopt2-
|
|
42
|
-
omniopt2-
|
|
43
|
-
omniopt2-
|
|
44
|
-
omniopt2-
|
|
45
|
-
omniopt2-
|
|
46
|
-
omniopt2-
|
|
47
|
-
omniopt2-
|
|
48
|
-
omniopt2-
|
|
49
|
-
omniopt2-
|
|
50
|
-
omniopt2-
|
|
51
|
-
omniopt2-
|
|
52
|
-
omniopt2-
|
|
53
|
-
omniopt2-
|
|
54
|
-
omniopt2-
|
|
55
|
-
omniopt2-
|
|
56
|
-
omniopt2-
|
|
57
|
-
omniopt2-
|
|
58
|
-
omniopt2-
|
|
59
|
-
omniopt2-
|
|
60
|
-
omniopt2-
|
|
61
|
-
omniopt2-
|
|
62
|
-
omniopt2-
|
|
63
|
-
omniopt2.egg-info/PKG-INFO,sha256=
|
|
34
|
+
omniopt2-8477.data/data/bin/.colorfunctions.sh,sha256=xxc08V3Fh_0Je20fkJMRO14u9VCSvMyOiMaDfioEyCY,1098
|
|
35
|
+
omniopt2-8477.data/data/bin/.general.sh,sha256=uyGMN8xNToQ0v50KoiYxm6jRmgf0orroOaodM_Nuq30,2107
|
|
36
|
+
omniopt2-8477.data/data/bin/.helpers.py,sha256=molXL_FxSckKszS9-eIFCD3XOntVlPgAez4KAjQhJjo,31436
|
|
37
|
+
omniopt2-8477.data/data/bin/.omniopt.py,sha256=IoGzrhiRynxMB-Q4eMbnmbBu-wuGS5q5LeRpaC1vv1w,438994
|
|
38
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_cpu_ram_usage.py,sha256=DbOAmdrbcZtsMnHJgHfeRngjtv6zX5J0axyua_dYezc,3932
|
|
39
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_general.py,sha256=3iy-bPef8I5rTB3KRz-TuleMdgKDmVZ6c8LuNQhNwu0,6810
|
|
40
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_gpu_usage.py,sha256=ojxVicwSoiyl7f3c-6lLuT2EpyPcSJKEcbp75LgDY2k,5107
|
|
41
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_kde.py,sha256=uRLWr72TDKvj3AqJ0O0AvkKZ1ok1O1QpXnbfQQdo0nA,6873
|
|
42
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_scatter.py,sha256=b0_CIqgyi6PztaUVJRL9X9XBTaOonh-yDH2hRxMGkH0,8403
|
|
43
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_scatter_generation_method.py,sha256=rgKY_w1E516c9UucVaEvaKd8tCnoUq9xg-RrYSDzYEQ,4289
|
|
44
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_scatter_hex.py,sha256=UKjw40c1eumgEcf0xqB-_SakX5PB6HD3u4VwBxbsgQo,10279
|
|
45
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_time_and_exit_code.py,sha256=WUyl2uI59wsC1eSX_5uJHOrqcF-s5cUDIEu8u3IFMLU,6462
|
|
46
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_trial_index_result.py,sha256=Xlo_dYTQNnxPhYakmgMM58CCcW9gUoXZ3gLap9RScTY,4578
|
|
47
|
+
omniopt2-8477.data/data/bin/.omniopt_plot_worker.py,sha256=VuluQq4W6KRR5RU08dxmDSFk5mbfDRkRJQFwwcLgAGw,4524
|
|
48
|
+
omniopt2-8477.data/data/bin/.random_generator.py,sha256=ezBBUXpez_QaGdpCglMcJ0KZPdQP0XdX5gnLzO1xhwU,2987
|
|
49
|
+
omniopt2-8477.data/data/bin/.shellscript_functions,sha256=9Yo5j3BBLDNVPwe2uNjHbVCbj3H1v1gC5Ju8KvPXfC4,13624
|
|
50
|
+
omniopt2-8477.data/data/bin/.tpe.py,sha256=93yjviAtxPRYUCpSIShW_H3QQ5JPNcnXNjF0g8zc7Wc,6766
|
|
51
|
+
omniopt2-8477.data/data/bin/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
52
|
+
omniopt2-8477.data/data/bin/apt-dependencies.txt,sha256=X5tBB8ZLW9XaFtRh8B7C2pIkSoxNNawqioDr0QZAtuM,149
|
|
53
|
+
omniopt2-8477.data/data/bin/omniopt,sha256=hlveAk9jpZyPUYl0v5TQRhEIzaOHOyyJRXELnOhOULY,51404
|
|
54
|
+
omniopt2-8477.data/data/bin/omniopt_docker,sha256=XyEGZ71l-tUlAYUluVF39fGO3NLDRa8UyrwxmAsXWNI,3542
|
|
55
|
+
omniopt2-8477.data/data/bin/omniopt_evaluate,sha256=9oBh0_ikCuIz_aJQZrN0j39NDiIDYoSvEFmSVIoFjJE,23842
|
|
56
|
+
omniopt2-8477.data/data/bin/omniopt_plot,sha256=ze6Dz2k0w5jyUnfatAA7dk59nzQjKC_G36tDvJGWsfA,13696
|
|
57
|
+
omniopt2-8477.data/data/bin/omniopt_share,sha256=2KZcTjN_7vcxNjb4sLLiWgUc38pl2-6-Qwmgq6_nTb0,13856
|
|
58
|
+
omniopt2-8477.data/data/bin/pylint.rc,sha256=ZGtZjVgJtK_6tdwgscJneS-LUeDASjSVVz6veCkp9rw,22631
|
|
59
|
+
omniopt2-8477.data/data/bin/requirements.txt,sha256=0ViG5vdrDP--nr7mbZbV0ayJc6a5APNlTiMqGEZB6qE,292
|
|
60
|
+
omniopt2-8477.data/data/bin/setup.py,sha256=zg7k4jeHXEdaGWGeB1mPC14fFj-hqz1vNimnU0JcMyk,4632
|
|
61
|
+
omniopt2-8477.data/data/bin/test_requirements.txt,sha256=jpyZzAwbWR_qnoRqWvpBB5MUjIX9jVwynX2D-B-r8aA,487
|
|
62
|
+
omniopt2-8477.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
63
|
+
omniopt2.egg-info/PKG-INFO,sha256=cNRV0JZTRzzRxEHWfaRvoGTWJ0gAnc6S9JgQhAkPkSM,5718
|
|
64
64
|
omniopt2.egg-info/SOURCES.txt,sha256=2mSVIhM8Ncyl5_s8ZFBlb6qjRDbTCQmV9FwVVjp5ROE,795
|
|
65
65
|
omniopt2.egg-info/dependency_links.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
66
66
|
omniopt2.egg-info/requires.txt,sha256=_n-6wV9UtTagGm4wbRDW7FjKoCB0Y4jkb5VbARh6pMU,779
|
|
67
67
|
omniopt2.egg-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
68
|
-
omniopt2-
|
|
69
|
-
omniopt2-
|
|
70
|
-
omniopt2-
|
|
71
|
-
omniopt2-
|
|
68
|
+
omniopt2-8477.dist-info/METADATA,sha256=cNRV0JZTRzzRxEHWfaRvoGTWJ0gAnc6S9JgQhAkPkSM,5718
|
|
69
|
+
omniopt2-8477.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
70
|
+
omniopt2-8477.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
71
|
+
omniopt2-8477.dist-info/RECORD,,
|
omniopt2.egg-info/PKG-INFO
CHANGED
pyproject.toml
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{omniopt2-8474.data → omniopt2-8477.data}/data/bin/.omniopt_plot_scatter_generation_method.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|