Skip to content

Commit

Permalink
Merge commit 'refs/pull/6031/head' of https://github.com/adafruit/cir…
Browse files Browse the repository at this point in the history
…cuitpython into fix-compression
  • Loading branch information
jepler committed Feb 15, 2022
2 parents a58bf23 + 1ac92fb commit fea9af5
Show file tree
Hide file tree
Showing 45 changed files with 483 additions and 130 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
run: python tools/ci_fetch_deps.py test ${{ github.sha }}
- name: CircuitPython version
run: |
git describe --dirty --tags || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags)
tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: Install dependencies
run: |
sudo apt-get update
Expand Down Expand Up @@ -148,8 +148,8 @@ jobs:
run: python tools/ci_fetch_deps.py mpy-cross-mac ${{ github.sha }}
- name: CircuitPython version
run: |
git describe --dirty --tags
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags)
tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: Install dependencies
run: |
brew install gettext
Expand Down Expand Up @@ -204,8 +204,8 @@ jobs:
run: python tools/ci_fetch_deps.py docs ${{ github.sha }}
- name: CircuitPython version
run: |
git describe --dirty --tags
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags)
tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: Set up Python 3
uses: actions/setup-python@v2
with:
Expand Down Expand Up @@ -379,7 +379,9 @@ jobs:
- name: Get CP deps
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
- name: CircuitPython version
run: git describe --dirty --tags
run: |
tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- uses: actions/cache@v2
name: Fetch IDF tool cache
id: idf-cache
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/create_website_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
gcc --version
python3 --version
- name: CircuitPython version
run: git describe --dirty --tags
run: |
tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: Website
run: python3 build_board_info.py
working-directory: tools
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ports_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ jobs:
run: python tools/ci_fetch_deps.py windows ${{ github.sha }}
- name: CircuitPython version
run: |
git describe --dirty --tags
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags)
tools/describe || git log --parents HEAD~4..
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
- name: build mpy-cross
run: make -j2 -C mpy-cross
Expand Down
5 changes: 4 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,15 @@
import sys
import urllib.parse
import time
import pathlib
from collections import defaultdict

from sphinx.transforms import SphinxTransform
from docutils import nodes
from sphinx import addnodes

tools_describe = str(pathlib.Path(__file__).parent / "tools/describe")

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down Expand Up @@ -129,7 +132,7 @@ def autoapi_prepare_jinja_env(jinja_env):

final_version = ""
git_describe = subprocess.run(
["git", "describe", "--dirty", "--tags"],
[tools_describe],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
encoding="utf-8"
Expand Down
4 changes: 4 additions & 0 deletions locale/ID.po
Original file line number Diff line number Diff line change
Expand Up @@ -3667,6 +3667,10 @@ msgstr ""
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/circuitpython.pot
Original file line number Diff line number Diff line change
Expand Up @@ -3630,6 +3630,10 @@ msgstr ""
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/cs.po
Original file line number Diff line number Diff line change
Expand Up @@ -3641,6 +3641,10 @@ msgstr ""
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/de_DE.po
Original file line number Diff line number Diff line change
Expand Up @@ -3692,6 +3692,10 @@ msgstr "Mathe-Domain-Fehler"
msgid "matrix is not positive definite"
msgstr "Matrix ist nicht positiv definitiv"

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/el.po
Original file line number Diff line number Diff line change
Expand Up @@ -3630,6 +3630,10 @@ msgstr ""
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/en_GB.po
Original file line number Diff line number Diff line change
Expand Up @@ -3667,6 +3667,10 @@ msgstr "math domain error"
msgid "matrix is not positive definite"
msgstr "matrix is not positive definite"

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -3709,6 +3709,10 @@ msgstr "error de dominio matemático"
msgid "matrix is not positive definite"
msgstr "matrix no es definida positiva"

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/fil.po
Original file line number Diff line number Diff line change
Expand Up @@ -3669,6 +3669,10 @@ msgstr "may pagkakamali sa math domain"
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -3739,6 +3739,10 @@ msgstr "erreur de domaine math"
msgid "matrix is not positive definite"
msgstr "la matrice n'est pas définie positive"

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/hi.po
Original file line number Diff line number Diff line change
Expand Up @@ -3630,6 +3630,10 @@ msgstr ""
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/it_IT.po
Original file line number Diff line number Diff line change
Expand Up @@ -3687,6 +3687,10 @@ msgstr "errore di dominio matematico"
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/ja.po
Original file line number Diff line number Diff line change
Expand Up @@ -3650,6 +3650,10 @@ msgstr "定義域エラー"
msgid "matrix is not positive definite"
msgstr "正定値行列ではありません"

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/ko.po
Original file line number Diff line number Diff line change
Expand Up @@ -3634,6 +3634,10 @@ msgstr ""
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/nl.po
Original file line number Diff line number Diff line change
Expand Up @@ -3670,6 +3670,10 @@ msgstr "fout in het wiskundig domein (math domain error)"
msgid "matrix is not positive definite"
msgstr "matrix is niet positief-definiet"

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
4 changes: 4 additions & 0 deletions locale/pl.po
Original file line number Diff line number Diff line change
Expand Up @@ -3642,6 +3642,10 @@ msgstr "błąd domeny"
msgid "matrix is not positive definite"
msgstr ""

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr ""

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
6 changes: 5 additions & 1 deletion locale/pt_BR.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-04 12:55-0600\n"
"PO-Revision-Date: 2022-02-11 10:58+0000\n"
"PO-Revision-Date: 2022-02-15 18:42+0000\n"
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
"Language-Team: \n"
"Language: pt_BR\n"
Expand Down Expand Up @@ -3727,6 +3727,10 @@ msgstr "erro de domínio matemático"
msgid "matrix is not positive definite"
msgstr "a matriz não é definitiva positiva"

#: shared-bindings/wifi/Radio.c
msgid "max_connections must be between 0 and 10"
msgstr "max_connections deve estar entre 0 e 10"

#: ports/espressif/common-hal/_bleio/Descriptor.c
#: ports/nrf/common-hal/_bleio/Characteristic.c
#: ports/nrf/common-hal/_bleio/Descriptor.c
Expand Down
Loading

0 comments on commit fea9af5

Please sign in to comment.