Skip to content

Commit 2023ac5

Browse files
committed
Merge remote-tracking branch 'origin/main' into library_development_doc
2 parents e5fc372 + ffa34ce commit 2023ac5

File tree

322 files changed

+751
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

322 files changed

+751
-340
lines changed

Diff for: .github/workflows/build.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Dump GitHub context
14-
env:
15-
GITHUB_CONTEXT: ${{ toJson(github) }}
16-
run: |
17-
export GITHUB_CONTEXT
18-
printenv GITHUB_CONTEXT
14+
uses: actions/github-script@v6
15+
with:
16+
script: console.log(JSON.stringify(context, null, 2))
1917
- name: Translate Repo Name For Build Tools filename_prefix
2018
id: repo-name
2119
run: |

Diff for: .github/workflows/images.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ on:
1010
workflow_dispatch:
1111

1212
concurrency:
13-
group: folder-images
13+
group: bundle-folder-images
1414
cancel-in-progress: true
1515

1616
jobs:
1717
update-images:
18+
if: github.repository_owner == 'adafruit'
1819
runs-on: ubuntu-20.04
1920
steps:
2021
- name: Dump GitHub context
21-
env:
22-
GITHUB_CONTEXT: ${{ toJson(github) }}
23-
run: echo "$GITHUB_CONTEXT"
24-
22+
uses: actions/github-script@v6
23+
with:
24+
script: console.log(JSON.stringify(context, null, 2))
2525
- uses: actions/[email protected]
2626

2727
- name: checkout submodules

Diff for: .github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Dump GitHub context
16-
env:
17-
GITHUB_CONTEXT: ${{ toJson(github) }}
18-
run: echo "$GITHUB_CONTEXT"
16+
uses: actions/github-script@v6
17+
with:
18+
script: console.log(JSON.stringify(context, null, 2))
1919
- name: Translate Repo Name For Build Tools filename_prefix
2020
id: repo-name
2121
run: |

Diff for: .gitmodules

+42-3
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,6 @@
218218
[submodule "libraries/drivers/mpl3115a2"]
219219
path = libraries/drivers/mpl3115a2
220220
url = https://github.com/adafruit/Adafruit_CircuitPython_MPL3115A2.git
221-
[submodule "libraries/drivers/lsm303"]
222-
path = libraries/drivers/lsm303
223-
url = https://github.com/adafruit/Adafruit_CircuitPython_LSM303.git
224221
[submodule "libraries/drivers/ds18x20"]
225222
path = libraries/drivers/ds18x20
226223
url = https://github.com/adafruit/Adafruit_CircuitPython_DS18X20.git
@@ -887,3 +884,45 @@
887884
[submodule "libraries/drivers/tsc2007"]
888885
path = libraries/drivers/tsc2007
889886
url = https://github.com/adafruit/Adafruit_CircuitPython_TSC2007.git
887+
[submodule "libraries/drivers/floppy"]
888+
path = libraries/drivers/floppy
889+
url = https://github.com/adafruit/Adafruit_CircuitPython_floppy.git
890+
[submodule "libraries/drivers/pcf8574"]
891+
path = libraries/drivers/pcf8574
892+
url = https://github.com/adafruit/Adafruit_CircuitPython_PCF8574.git
893+
[submodule "libraries/drivers/mmc56x3"]
894+
path = libraries/drivers/mmc56x3
895+
url = https://github.com/adafruit/Adafruit_CircuitPython_MMC56x3.git
896+
[submodule "libraries/drivers/si1145"]
897+
path = libraries/drivers/si1145
898+
url = https://github.com/adafruit/Adafruit_CircuitPython_SI1145.git
899+
[submodule "libraries/drivers/ags02ma"]
900+
path = libraries/drivers/ags02ma
901+
url = https://github.com/adafruit/Adafruit_CircuitPython_AGS02MA.git
902+
[submodule "libraries/drivers/max1704x"]
903+
path = libraries/drivers/max1704x
904+
url = https://github.com/adafruit/Adafruit_CircuitPython_MAX1704x.git
905+
[submodule "libraries/drivers/guvx-i2c"]
906+
path = libraries/drivers/guvx-i2c
907+
url = https://github.com/adafruit/Adafruit_CircuitPython_GUVX_I2C.git
908+
[submodule "libraries/drivers/tca8418"]
909+
path = libraries/drivers/tca8418
910+
url = https://github.com/adafruit/Adafruit_CircuitPython_TCA8418.git
911+
[submodule "libraries/drivers/ltr329_ltr303"]
912+
path = libraries/drivers/ltr329_ltr303
913+
url = https://github.com/adafruit/Adafruit_CircuitPython_LTR329_LTR303.git
914+
[submodule "libraries/drivers/ens160"]
915+
path = libraries/drivers/ens160
916+
url = https://github.com/adafruit/Adafruit_CircuitPython_ENS160.git
917+
[submodule "libraries/drivers/pcf8575"]
918+
path = libraries/drivers/pcf8575
919+
url = https://github.com/adafruit/Adafruit_CircuitPython_PCF8575.git
920+
[submodule "libraries/helpers/ble_beacon"]
921+
path = libraries/helpers/ble_beacon
922+
url = https://github.com/adafruit/Adafruit_CircuitPython_BLE_Beacon.git
923+
[submodule "libraries/helpers/ble_file_transfer"]
924+
path = libraries/helpers/ble_file_transfer
925+
url = https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer.git
926+
[submodule "libraries/helpers/pastebin"]
927+
path = libraries/helpers/pastebin
928+
url = https://github.com/adafruit/Adafruit_CircuitPython_Pastebin.git

Diff for: .pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ repos:
1717
- id: check-yaml
1818
- id: end-of-file-fixer
1919
- id: trailing-whitespace
20+
exclude: .+\.md

Diff for: README.rst

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Adafruit CircuitPython Library Bundle
1313
:target: https://travis-ci.com/adafruit/Adafruit_CircuitPython_Bundle
1414
:alt: Build Status
1515

16+
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
17+
:target: https://github.com/psf/black
18+
:alt: Code Style: Black
19+
1620
This repo bundles a bunch of useful CircuitPython libraries into an easy to
1721
download zip file. CircuitPython boards can ship with the contents of the zip to
1822
make it easy to provide a lot of libraries by default.
@@ -82,15 +86,15 @@ To build this bundle locally you'll need to install the
8286

8387
.. code::
8488
85-
python3 -m venv .env
86-
source .env/bin/activate
89+
python3 -m venv .venv
90+
source .venv/bin/activate
8791
pip install circuitpython-build-tools
8892
8993
Once installed, make sure you are in the virtual environment:
9094

9195
.. code::
9296
93-
source .env/bin/activate
97+
source .venv/bin/activate
9498
9599
Then run the build:
96100

0 commit comments

Comments
 (0)