bluer-sbc 8.121.1__py3-none-any.whl → 8.130.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.

Potentially problematic release.


This version of bluer-sbc might be problematic. Click here for more details.

bluer_sbc/.abcli/seed.sh CHANGED
@@ -17,30 +17,48 @@ function bluer_sbc_seed() {
17
17
 
18
18
  bluer_ai_seed add_kaggle
19
19
 
20
- bluer_ai_seed add_ssh_key
21
-
22
- seed="${seed}ssh-keyscan github.com | sudo tee -a ~/.ssh/known_hosts$delim_section"
20
+ bluer_ai_seed add_ssh_key sudo
23
21
 
24
22
  # https://serverfault.com/a/1093530
25
23
  # https://packages.ubuntu.com/bionic/all/ca-certificates/download
26
- local certificate_name="ca-certificates_20211016ubuntu0.18.04.1_all"
24
+ local certificate_name="ca-certificates_20230311ubuntu0.18.04.1_all"
27
25
  seed="${seed}wget --no-check-certificate http://security.ubuntu.com/ubuntu/pool/main/c/ca-certificates/$certificate_name.deb$delim"
28
26
  seed="${seed}sudo dpkg -i $certificate_name.deb$delim_section"
29
27
  seed="${seed}sudo apt-get update --allow-releaseinfo-change$delim"
30
28
  seed="${seed}sudo apt-get install -y ca-certificates libgnutls30$delim"
31
-
29
+ seed="${seed}sudo apt install -y python3-venv$delim"
30
+ seed="${seed}sudo apt install -y cmake build-essential$delim"
31
+ seed="${seed}sudo apt install -y libjpeg-dev zlib1g-dev libfreetype6-dev liblcms2-dev libopenjpeg-dev libtiff-dev libwebp-dev$delim"
32
+ seed="${seed}sudo apt-get install libopenblas-base$delim"
32
33
  seed="${seed}sudo apt-get --yes --force-yes install git$delim_section"
33
34
 
34
35
  bluer_ai_seed add_repo
35
36
 
36
- [[ "$target" == "headless_rpi" ]] &&
37
+ if [[ "$target" == "headless_rpi" ]]; then
38
+ seed="${seed}mkdir -pv ~/storage/temp/ignore$delim"
37
39
  seed="${seed}touch ~/storage/temp/ignore/headless$delim_section"
40
+ fi
38
41
 
39
42
  bluer_ai_seed add_bluer_ai_env
40
43
 
41
- seed="${seed}pip install --upgrade pip --no-input$delim"
44
+ seed="${seed}pip3 install --upgrade pip --no-input$delim"
45
+ seed="${seed}pip3 install \"pandas<2.1\"$delim"
46
+ seed="${seed}pip3 install pillow$delim"
47
+ seed="${seed}pip3 install -e . --constraint ./bluer_ai/assets/no-pyarrow.txt$delim_section"
48
+
49
+ bluer_ai_seed add_repo repo=bluer-objects
42
50
  seed="${seed}pip3 install -e .$delim_section"
51
+ seed="${seed}$(bluer_ai_seed add_file $abcli_path_git/bluer-objects/.env \$HOME/git/bluer-objects/.env)$delim_section"
52
+
53
+ bluer_ai_seed add_repo repo=bluer-sbc
54
+ seed="${seed}pip3 install -e .$delim_section"
55
+
56
+ if [[ "$target" == "headless_rpi" ]]; then
57
+ seed="${seed}pip3 install opencv-python-headless$delim"
58
+ seed="${seed}sudo apt install -y libopenjp2-7 libavcodec58 libavformat58 libswscale5 libblas3 libatlas3-base$delim_section"
59
+ fi
43
60
 
61
+ seed="${seed}cd; cd git; cd bluer-ai$delim"
44
62
  seed="${seed}source ./bluer_ai/.abcli/bluer_ai.sh$delim_section"
45
63
 
46
64
  seed="${seed}source ~/.bashrc$delim_section"
@@ -50,3 +68,17 @@ function bluer_sbc_seed() {
50
68
  seed="${seed}bluer_ai init$delim_section"
51
69
  fi
52
70
  }
71
+
72
+ function bluer_ai_seed_swallow_raspbian() {
73
+ bluer_ai_seed add_repo repo=bluer-ugv
74
+ seed="${seed}pip3 install -e .$delim_section"
75
+
76
+ seed="${seed}sudo apt install -y libopenblas-dev$delim"
77
+
78
+ seed="${seed}cd$delim"
79
+ seed="${seed}wget https://github.com/nmilosev/pytorch-arm-builds/releases/download/v1.13.0/torch-1.13.0-cp39-cp39-linux_armv7l.whl$delim"
80
+ seed="${seed}pip3 install torch-1.13.0-cp39-cp39-linux_armv7l.whl$delim_section"
81
+
82
+ bluer_ai_seed add_repo repo=bluer-algo
83
+ seed="${seed}pip3 install -e .$delim_section"
84
+ }
bluer_sbc/__init__.py CHANGED
@@ -4,7 +4,7 @@ ICON = "🌀"
4
4
 
5
5
  DESCRIPTION = f"{ICON} AI for single board computers."
6
6
 
7
- VERSION = "8.121.1"
7
+ VERSION = "8.130.1"
8
8
 
9
9
  REPO_NAME = "bluer-sbc"
10
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bluer_sbc
3
- Version: 8.121.1
3
+ Version: 8.130.1
4
4
  Summary: 🌀 AI for single board computers.
5
5
  Home-page: https://github.com/kamangir/bluer-sbc
6
6
  Author: Arash Abadpour (Kamangir)
@@ -50,7 +50,7 @@ pip install bluer_sbc
50
50
 
51
51
  [![pylint](https://github.com/kamangir/bluer-sbc/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/bluer-sbc/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/bluer-sbc/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/bluer-sbc/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/bluer-sbc/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/bluer-sbc/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/bluer-sbc.svg)](https://pypi.org/project/bluer-sbc/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/bluer-sbc)](https://pypistats.org/packages/bluer-sbc)
52
52
 
53
- built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-8.121.1`](https://github.com/kamangir/bluer-sbc).
53
+ built by 🌀 [`bluer README`](https://github.com/kamangir/bluer-objects/tree/main/bluer_objects/README), based on 🌀 [`bluer_sbc-8.130.1`](https://github.com/kamangir/bluer-sbc).
54
54
 
55
55
 
56
56
  built by 🌀 [`blueness-3.118.1`](https://github.com/kamangir/blueness).
@@ -1,5 +1,5 @@
1
1
  bluer_sbc/README.py,sha256=p-zQD0mdeXyPxgy9MpqlTH8tNhP2HMLO6J7Ta2Gv4qQ,1115
2
- bluer_sbc/__init__.py,sha256=h3tRoy01zLGn4BL7CfKAIa1_O4N6jr1wZOC9syiV_Ps,292
2
+ bluer_sbc/__init__.py,sha256=yM_1O6PavEJ8jhH5zCempjy5OtGd1TzeT3FsUCfnToE,292
3
3
  bluer_sbc/__main__.py,sha256=JV8oYpZDQbvcDpKJtbjU0hDeMJkzsDLGlhIWLmRpDQ4,348
4
4
  bluer_sbc/config.env,sha256=_0-DQI3JZ5lvC1750KepY4ug6apI0I5EhcbZ3JD1yZs,652
5
5
  bluer_sbc/env.py,sha256=w1kYRW06SUm4AzyrqWX1SDRahR8eHWmWHEV1WQ3k1rs,1554
@@ -18,7 +18,7 @@ bluer_sbc/.abcli/grove.sh,sha256=6Lf4TiQzZj9uStCY9ezd8djcqVthzbybkmgmZ8Kr9wE,118
18
18
  bluer_sbc/.abcli/hat.sh,sha256=ggMb9XOFA3t3sBTGalQK4x7yNuAgK3jA6UkFDWAnndM,449
19
19
  bluer_sbc/.abcli/lepton.sh,sha256=e7bzeYC8JpZMTTWkIfIscPfsoGYPb1ONWaTdDrglfRc,327
20
20
  bluer_sbc/.abcli/scroll_phat_hd.sh,sha256=AUD38PfNMCA-88GjHa-xV4OM7IS8mg5ECNFjAzLJ8AQ,331
21
- bluer_sbc/.abcli/seed.sh,sha256=75cd8YCA7JGXgohVk-N9CjxCLjZpIoAWYGy_QJ9wHlA,1639
21
+ bluer_sbc/.abcli/seed.sh,sha256=rJ35m0E4D0sTJG0LFhJ5bgcwLQIH63JoOxOoMxw32f8,3253
22
22
  bluer_sbc/.abcli/session.sh,sha256=90Y-2pzZnM3YZO9sYeshS83oiLUE38WqCl-gA_RfWT0,1003
23
23
  bluer_sbc/.abcli/sparkfun_top_phat.sh,sha256=F8dV3MjghNU1MMzCXRnQ0kaorr2BOswLBt8Sry5Youo,686
24
24
  bluer_sbc/.abcli/unicorn_16x16.sh,sha256=_cvgK1tT51BqN12HxEx_9FXWTNvPISd4T7pPmA2Jxfo,330
@@ -83,8 +83,8 @@ bluer_sbc/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
83
83
  bluer_sbc/session/__main__.py,sha256=O2Tv6HgE8Bos7ASIViYludpWVi6EEc9XRoP8jYC2-2Q,534
84
84
  bluer_sbc/session/classes.py,sha256=WrfFBXf6Shz4PGyw1Xpr5nAnWbhfHXzabLnW393zbsE,8938
85
85
  bluer_sbc/session/functions.py,sha256=eRJKSczRjKn3Fo2jv8_4EMAZwfJBj5cIPg2WqHkC2Q8,481
86
- bluer_sbc-8.121.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
87
- bluer_sbc-8.121.1.dist-info/METADATA,sha256=i5ZH8iMkwj1cYKqjgkFEL_RBmL-pymZ-zK0gk0pX0x4,3552
88
- bluer_sbc-8.121.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
- bluer_sbc-8.121.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
90
- bluer_sbc-8.121.1.dist-info/RECORD,,
86
+ bluer_sbc-8.130.1.dist-info/licenses/LICENSE,sha256=ogEPNDSH0_dhiv_lT3ifVIdgIzHAqNA_SemnxUfPBJk,7048
87
+ bluer_sbc-8.130.1.dist-info/METADATA,sha256=E6muudWAA7sjGdbHOGWVXybsbKGi5oV3CrFbY1djr24,3552
88
+ bluer_sbc-8.130.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
+ bluer_sbc-8.130.1.dist-info/top_level.txt,sha256=DsLDHFiTeAj2mctGVmCSgWUhzCznWSQoUmQ1VyEmnT0,10
90
+ bluer_sbc-8.130.1.dist-info/RECORD,,