Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9ed7a9d
Remove the movehub extension and everything specific to this type of …
HaudinFlorence Aug 12, 2026
6af5e01
Move code from bluetooth-extension to bluetooth.
HaudinFlorence Aug 12, 2026
dfcf9bf
Use lerna and re-organize the repo into the structure of a monorepo.
HaudinFlorence Aug 12, 2026
ec70b23
Update package.json and tsconfig.json files to take review comments i…
HaudinFlorence Aug 12, 2026
aea0b41
Fix various errors and conflicting versions.
HaudinFlorence Aug 12, 2026
e6cf3bc
Keep on trying to build and fix errors.
HaudinFlorence Aug 13, 2026
8591f3b
Fix imports in bluetooth-extension.
HaudinFlorence Aug 13, 2026
4f7693f
Add a style directory with an empty index.js in bluetooth-extension.
HaudinFlorence Aug 13, 2026
21f2b36
Try to fix jupyter lab console errors.
HaudinFlorence Aug 13, 2026
4e40520
Update style directory for bluetooth-extension package.
HaudinFlorence Aug 14, 2026
7356541
Update pyproject.toml.
HaudinFlorence Aug 14, 2026
2c024cd
Remove @types/node from the devDependencies of the global package.json.
HaudinFlorence Aug 14, 2026
becceba
Update lint dependencies and config in package.json files.
HaudinFlorence Aug 17, 2026
4a056e3
Add jest dependencies in global package.json.
HaudinFlorence Aug 17, 2026
81c7857
Remove type defined as module in the global package.json.
HaudinFlorence Aug 17, 2026
2be82b5
Try to fix configuration related to tests.
HaudinFlorence Aug 17, 2026
4b12f9b
Remove test file in ui-tests/tests.
HaudinFlorence Aug 17, 2026
cb1f605
Remove unnecessary css/js style files and related dependencies.
HaudinFlorence Aug 17, 2026
1cae2d2
Update README in ui-tests.
HaudinFlorence Aug 17, 2026
b302c92
Try to fix failing lint tests.
HaudinFlorence Aug 17, 2026
0d306cb
Remove type set as module in global package.json.
HaudinFlorence Aug 17, 2026
cee54f3
Remove test-ui script in global package.json.
HaudinFlorence Aug 17, 2026
f58f6e6
Remove upload artifact GitHub action.
HaudinFlorence Aug 18, 2026
a3cdbcd
Try to fix check release failing GitHub action.
HaudinFlorence Aug 18, 2026
0bd9d8c
Update the package.json files.
HaudinFlorence Aug 18, 2026
39d977f
Remove eslint.config.js file.
HaudinFlorence Aug 18, 2026
70ae37e
Remove babel, jest and webpack config files.
HaudinFlorence Aug 18, 2026
15f55ec
Remove test script and test the extension in build.yml.
HaudinFlorence Aug 18, 2026
c202363
Try to fix check release failing CI tests.
HaudinFlorence Aug 18, 2026
042e650
Restore ui-tests related parts in build.yml and restore test file.
HaudinFlorence Aug 18, 2026
073c807
Remove non necessary dependencies from bluetooth/package.json.
HaudinFlorence Aug 19, 2026
9cd5d2b
Remove non necessary dependencies from bluetooth-extension/package.json.
HaudinFlorence Aug 19, 2026
168c666
Update _jupyter_labextension_paths.
HaudinFlorence Aug 19, 2026
fc7fc1c
Update jupyterlab dependencies to more recent versions.
HaudinFlorence Aug 19, 2026
1fd5613
Update bluetooth/package.json and bluetooth-extension/package.json.
HaudinFlorence Aug 19, 2026
1e615db
Update bluetooth/package.json.
HaudinFlorence Aug 19, 2026
86dbde8
Update yarn.lock that wasn't updated after updating jupyterlab packag…
HaudinFlorence Aug 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ jobs:
jlpm
jlpm run lint:check

- name: Test the extension
run: |
set -eux
jlpm run test

- name: Build the extension
run: |
set -eux
Expand Down Expand Up @@ -111,7 +106,7 @@ jobs:
set -eux
python -m pip install "jupyterlab>=4.0.0,<5" jupyter_bluetooth_manager*.whl

- name: Install dependencies
- name: Install dependencies
working-directory: ui-tests
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: 0
Expand All @@ -133,7 +128,6 @@ jobs:
working-directory: ui-tests
run: |
jlpm playwright test

- name: Upload Playwright Test report
if: always()
uses: actions/upload-artifact@v4
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,6 @@ jobs:

# install a dev version of the bluetooth-manager extension
python -m pip install .
- name: Build the JupyterLite site
shell: bash -l {0}
run: |
jupyter lite build --output-dir dist --contents examples/test-widget-with-ipykernel.ipynb

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./dist

deploy:
needs: build
Expand Down
8 changes: 0 additions & 8 deletions LICENSE
Comment thread
martinRenou marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,3 @@ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


Lego Boost Browser Files License
================================

The files that are in /movehub-extension/moveHub directory are initially forked from https://github.com/ttu/lego-boost-browser and for some of them then partially modified.

Lego Boost Browser repository is licensed under the "MIT" license.
1 change: 0 additions & 1 deletion babel.config.js

This file was deleted.

223 changes: 0 additions & 223 deletions examples/test-widget-with-ipykernel.ipynb

This file was deleted.

28 changes: 0 additions & 28 deletions jest.config.js

This file was deleted.

4 changes: 1 addition & 3 deletions jupyter_bluetooth_manager/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from .movehub import MoveHubWidget, LedColor,Port, Sensor

try:
from ._version import __version__
except ImportError:
Expand All @@ -14,5 +12,5 @@
def _jupyter_labextension_paths():
return [{
"src": "labextension",
"dest": "jupyter-bluetooth-manager"
"dest": "@jupyter-bluetooth-manager/bluetooth-extension"
}]
12 changes: 0 additions & 12 deletions jupyter_bluetooth_manager/_frontend.py

This file was deleted.

Loading
Loading