Skip to content

Commit c8a98d1

Browse files
committed
Merge branch 'adafruit_main' into hidden_vectorio
2 parents 666a5ff + 5f4f667 commit c8a98d1

File tree

315 files changed

+4837
-3640
lines changed

Some content is hidden

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

315 files changed

+4837
-3640
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ jobs:
400400
id: idf-cache
401401
with:
402402
path: ${{ github.workspace }}/.idf_tools
403-
key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/espressif/esp-idf/HEAD') }}-20210923
403+
key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/espressif/esp-idf/HEAD') }}-20220404
404404
- name: Clone IDF submodules
405405
run: |
406406
(cd $IDF_PATH && git submodule update --init)

.github/workflows/create_website_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ jobs:
4242
working-directory: tools
4343
env:
4444
RELEASE_TAG: ${{ github.event.release.tag_name }}
45-
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.BLINKA_GITHUB_ACCESS_TOKEN }}
45+
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.ADABOT_GITHUB_ACCESS_TOKEN }}
4646
if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested')

.github/workflows/ports_windows.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ jobs:
6666
pip install wheel
6767
# requirements_dev.txt doesn't install on windows. (with msys2 python)
6868
# instead, pick a subset for what we want to do
69-
# Undo the pin of typer & click when undoing it in requirements-dev.txt
70-
pip install cascadetoml jinja2 typer==0.4.0 click==8.0.4 intelhex
69+
pip install cascadetoml jinja2 typer click intelhex
7170
# check that installed packages work....?
7271
which python; python --version; python -c "import cascadetoml"
7372
which python3; python3 --version; python3 -c "import cascadetoml"

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@
196196
url = https://github.com/raspberrypi/rpi-firmware.git
197197
branch = master
198198
shallow = true
199+
[submodule "lib/adafruit_floppy"]
200+
path = lib/adafruit_floppy
201+
url = https://github.com/adafruit/Adafruit_Floppy
199202
[submodule "ports/stm/st_driver/cmsis_device_f4"]
200203
path = ports/stm/st_driver/cmsis_device_f4
201204
url = https://github.com/STMicroelectronics/cmsis_device_f4.git

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
]
8484

8585
# Add any paths that contain templates here, relative to this directory.
86-
templates_path = ['templates']
86+
templates_path = ['templates', "docs/templates"]
8787

8888
# The suffix of source filenames.
8989
source_suffix = {

docs/library/zlib.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
.. module:: zlib
77
:synopsis: zlib decompression
8+
:noindex:
89

910
|see_cpython_module| :mod:`cpython:zlib`.
1011

@@ -26,6 +27,7 @@ Functions
2627
CPython and is ignored.
2728

2829
.. class:: DecompIO(stream, wbits=0, /)
30+
:noindex:
2931

3032
Create a ``stream`` wrapper which allows transparent decompression of
3133
compressed data in another *stream*. This allows to process compressed

extmod/vfs_fat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ STATIC const mp_obj_property_t fat_vfs_label_obj = {
440440
.base.type = &mp_type_property,
441441
.proxy = {(mp_obj_t)&fat_vfs_getlabel_obj,
442442
(mp_obj_t)&fat_vfs_setlabel_obj,
443-
(mp_obj_t)MP_ROM_NONE},
443+
MP_ROM_NONE},
444444
};
445445
#endif
446446

0 commit comments

Comments
 (0)