-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* no more f-strings * remove upy wrappers * pre-allocate SPI buffers in rf24.py; fix spelling * update setup.py for macos installs * only require spidev for Linux arm* devices * update network example * Update topology.rst * add as_bin param to save/load_dhcp() * update docs for theme changes * complete type hinting * ble example flush RX FIFO on exit slave()
- Loading branch information
Showing
41 changed files
with
666 additions
and
624 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,10 +28,10 @@ jobs: | |
awk -F '\/' '{ print tolower($2) }' | | ||
tr '-' '_' | ||
) | ||
- name: Set up Python 3.7 | ||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.7 | ||
python-version: 3.9 | ||
- name: Versions | ||
run: | | ||
python3 --version | ||
|
@@ -50,12 +50,9 @@ jobs: | |
- name: Build assets | ||
run: circuitpython-build-bundles --filename_prefix ${{ steps.repo-name.outputs.repo-name }} --library_location . --package_folder_prefix ${{ steps.pkg-name.outputs.pkg-name }} | ||
- name: Upload Release Assets | ||
# the 'official' actions version does not yet support dynamically | ||
# supplying asset names to upload. @csexton's version chosen based on | ||
# discussion in the issue below, as its the simplest to implement and | ||
# allows for selecting files with a pattern. | ||
# https://github.com/actions/upload-release-asset/issues/4 | ||
#uses: actions/[email protected] | ||
# the 'official' actions version changes the release titlle upon upload. | ||
# @csexton's version is chosen based on because it doesn't | ||
#uses: actions/upload-release-asset@v2 | ||
uses: csexton/release-asset-action@master | ||
with: | ||
pattern: "bundles/*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"""circuitpython-nrf24l01 package version and repository information. This is meant to | ||
be used with adafruit/circup package manager to manage packages on Circuitpython devices | ||
like pip does for CPython devices.""" | ||
__version__ = "0.0.0-auto.0" | ||
__repo__ = "https://github.com/nRF24/CircuitPython_nRF24L01.git" |
Oops, something went wrong.