bluer-options 5.148.1__py3-none-any.whl → 5.153.1__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.
@@ -9,6 +9,11 @@ function bluer_ai_seed() {
9
9
  seed="${seed}source \$HOME/venv/bluer_ai/bin/activate$delim_section"
10
10
  return
11
11
  fi
12
+ if [[ "$task" == "add_bluer_ai_env_ssp" ]]; then
13
+ seed="${seed}python3 -m venv \$HOME/venv/bluer_ai --system-site-packages$delim"
14
+ seed="${seed}source \$HOME/venv/bluer_ai/bin/activate$delim_section"
15
+ return
16
+ fi
12
17
 
13
18
  # internal function.
14
19
  if [[ "$task" == "add_file" ]]; then
bluer_options/__init__.py CHANGED
@@ -6,7 +6,7 @@ ICON = "🌀"
6
6
 
7
7
  DESCRIPTION = f"{ICON} Options for Bash."
8
8
 
9
- VERSION = "5.148.1"
9
+ VERSION = "5.153.1"
10
10
 
11
11
  REPO_NAME = "bluer-options"
12
12
 
@@ -13,6 +13,7 @@ list_of_modules: List[str] = [
13
13
  "bluer_plugin",
14
14
  "bluer_sandbox",
15
15
  "bluer_sbc",
16
+ "bluer_ugv",
16
17
  "giza",
17
18
  ] + [
18
19
  item
@@ -2,6 +2,7 @@ from bluer_options.host.functions import (
2
2
  get_name_,
3
3
  get_name,
4
4
  get_seed_filename,
5
+ is_64bit,
5
6
  is_aws_batch,
6
7
  is_docker,
7
8
  is_ec2,
@@ -66,6 +66,10 @@ def get_seed_filename() -> str:
66
66
  )
67
67
 
68
68
 
69
+ def is_64bit() -> bool:
70
+ return os.getenv("abcli_is_64bit", "false") == "true"
71
+
72
+
69
73
  def is_aws_batch() -> bool:
70
74
  return os.getenv("abcli_is_aws_batch", "false") == "true"
71
75
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_options
3
- Version: 5.148.1
3
+ Version: 5.153.1
4
4
  Summary: 🌀 Options for Bash.
5
5
  Home-page: https://github.com/kamangir/bluer-options
6
6
  Author: Arash Abadpour (Kamangir)
@@ -1,4 +1,4 @@
1
- bluer_options/__init__.py,sha256=JXbX40eQWCrxIWzJmlCkdty_Y6PE46bWrvko-z8MMcE,288
1
+ bluer_options/__init__.py,sha256=uILOB4328DCHNzPxyJcYEOM4LMe8AYvnBIxbOlv_bwg,288
2
2
  bluer_options/__main__.py,sha256=-6ce9W1uXkle4YtEYlSUMWxSmsur3dRDA4_MvNNhEVg,236
3
3
  bluer_options/config.env,sha256=2AG3xuWiMqaNmlCNDWQOJ_AssKk7KXhn0XDIkHWNQ2Q,30
4
4
  bluer_options/elapsed_timer.py,sha256=46e-g-bjC7J4hGOGKD12R90ficXzFYn84xlLX6l34I8,545
@@ -24,7 +24,7 @@ bluer_options/.bash/plugins.sh,sha256=EtrXM_NPAQcns6ieqbywepkgugqrLOAyXiKKP7FwQY
24
24
  bluer_options/.bash/pylint.sh,sha256=IIRfKEHlBlUmStyg4IY58CcT8PkSp-frmv01BgNgOyE,1242
25
25
  bluer_options/.bash/pytest.sh,sha256=NuUx0iPmtjaGNxRr68XA8A4C34PK3ngA3Db6HEOQb6o,814
26
26
  bluer_options/.bash/repeat.sh,sha256=PpwKKWm2mb6EpF604F12exyM3vRap4Nw2yFb8bXKoUw,295
27
- bluer_options/.bash/seed.sh,sha256=cjL6_bQDAE0lSoWA7GoGCcMSCZ23zcLniNk-JzdlcCA,6883
27
+ bluer_options/.bash/seed.sh,sha256=1YZyjQWF-_zAHqbSNCYqYSRhHWDoyOiTFGJ7ltzGApI,7123
28
28
  bluer_options/.bash/sleep.sh,sha256=CWd1KRXuKv516i4oU62bnTY4dyp97CK29-C-mN476Vg,217
29
29
  bluer_options/.bash/source.sh,sha256=fe-4NpNxJice2rKzoUQOiMyPbLA3piSL48qOK1osUx8,852
30
30
  bluer_options/.bash/string.sh,sha256=cN-ixZSX1F_OvcSq-GvWbC7zamxOum6eH9_luYgz5m8,893
@@ -45,10 +45,10 @@ bluer_options/env/functions.py,sha256=t-aJf1wEj7Nxej1XTxLB247FMYEAlNaRqdfGxU-jWg
45
45
  bluer_options/help/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  bluer_options/help/__main__.py,sha256=3mmcZxsCJLZbXd9OasPy7jhi0COr1fGuDYO8IAw7K_w,789
47
47
  bluer_options/help/functions.py,sha256=NHvjbO9jbouXsynP7MR2p8xxbF4J1Qwf3HCt3YZWRxI,1973
48
- bluer_options/help/parsing.py,sha256=Wu7yyDy16VkcBTUPAIDkpeKOTiByF4qijcF4RyF9tZ8,1013
49
- bluer_options/host/__init__.py,sha256=AFCeuUYExylG3PS3jTiUj4ZNxo1kgN4H9Di5umHrPQo,321
48
+ bluer_options/help/parsing.py,sha256=jpeC3NO0W4wEK7KoiHNyq7TRK7OiVsO0IQCvkoqI3tw,1030
49
+ bluer_options/host/__init__.py,sha256=Cy_zamSTzv7F2sktvO6_gdK21eeps4FI7EIaltXU7UU,335
50
50
  bluer_options/host/__main__.py,sha256=A0Z-sAG9lVpQx9ULzroAINPw2sZyzouUvwrYU_8QtSs,775
51
- bluer_options/host/functions.py,sha256=9y2LmsjD1Z0uY2QSPkAKrmWU-f6CrvfB9I2z7mBR4S0,3889
51
+ bluer_options/host/functions.py,sha256=hyjeRGkOZS06CMjtmJW-ZwsqLcgZc6K-MRqRzj1zbuM,3973
52
52
  bluer_options/list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  bluer_options/list/__main__.py,sha256=kGIp9rgOIAAveRI0b1iXfg2eMows80C2kJzjCVh1poQ,3558
54
54
  bluer_options/logger/__init__.py,sha256=RBE9wNeOlBcbQFCYjJEbTMvCmY-aqKdZ-uNRJYTBzP4,137
@@ -63,8 +63,8 @@ bluer_options/string/functions.py,sha256=cvP4_b0CUk3xXWLTpqy17NOw8ldiiUx3GLpggap
63
63
  bluer_options/terminal/__init__.py,sha256=kyNhbC5NVCuqrUhbbTeAOTW1ZO7MRRbi0RtXGBFKtJc,73
64
64
  bluer_options/terminal/__main__.py,sha256=3o465bp44c2f1KHDn4j664hpbvu8wKOwQ2c1OPoa6Xc,902
65
65
  bluer_options/terminal/functions.py,sha256=A23uHLeU4JIctmecOFk_KhIfOeHu-WMjnSzBj2KiF3U,1947
66
- bluer_options-5.148.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
67
- bluer_options-5.148.1.dist-info/METADATA,sha256=wT4y_gxjG6IEJK2BUfPeTw4bnz2ireVp-DJmkSCDMM4,4951
68
- bluer_options-5.148.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
69
- bluer_options-5.148.1.dist-info/top_level.txt,sha256=yw9slt8n3R7IiYmf83OtHtB8Z-EgP9UwyQTk1EGiAJU,14
70
- bluer_options-5.148.1.dist-info/RECORD,,
66
+ bluer_options-5.153.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
67
+ bluer_options-5.153.1.dist-info/METADATA,sha256=TlhP-0WE1pfVi-oulqmwtbWonlkDIv6pdquiaJhcgW4,4951
68
+ bluer_options-5.153.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
69
+ bluer_options-5.153.1.dist-info/top_level.txt,sha256=yw9slt8n3R7IiYmf83OtHtB8Z-EgP9UwyQTk1EGiAJU,14
70
+ bluer_options-5.153.1.dist-info/RECORD,,