Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for Ethernet, Refactor #21

Merged
merged 16 commits into from
Mar 17, 2020
Merged

Updates for Ethernet, Refactor #21

merged 16 commits into from
Mar 17, 2020

Conversation

brentru
Copy link
Member

@brentru brentru commented Mar 12, 2020

This is a BREAKING Pull Request

The following libraries will need to be updated prior to this library's release:

This Pull Request:

  • Removes requirement for a network interface
    • Dependency for network manager replaced by a global socket and interface. Uses same syntax as Adafruit_CircuitPython_Requests: mqtt.set_socket(socket_type, interface_type)
    • BREAKS init, removes socket and network_manager
    • Deprecates loop_forever (noted for now, removing on next major release) in favor of having user-code handle network interface management (see: minimqtt_pub_sub_blocking.py for an example)
  • Removes methods which handle the network interface: is_wifi_connected, is_sock_connected, reconnect_socket, reconnect_wifi
  • Automatically assigns socket port (secure/insecure) based on http/https in url.
  • Adds support for ethernet interfaces (via https://github.com/adafruit/Adafruit_CircuitPython_Wiznet5k)
    • Added minimqtt_adafruitio_eth.py and minimqtt_simpletest_eth.py examples
  • Fixes examples/minimqtt_pub_sub_pyportal.py example

Test Hardware: Adafruit CircuitPython 5.0.0-rc.1 on 2020-03-01; Adafruit PyPortal Titano with samd51j20

Example test output

minimqtt_simpletest_eth.py

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.
code.py output:
Attempting to connect to http://io.adafruit.com
Connected to MQTT Broker!
Flags: 0
 RC: 0
Subscribing to test/topic
Traceback (most recent call last):
  File "code.py", line 77, in <module>
  File "/lib/adafruit_minimqtt.py", line 501, in subscribe
MMQTTException: SUBACK Failure! <- This is OK, we didnt use the correct topic format for IO

minimqtt_simpletest.py

code.py output:
Connecting to WiFi...
Failed to connect, retrying
 ('Failed to connect to ssid', b'TP-Link_519E')
Connected!
Attempting to connect to https://io.adafruit.com
attempting to conn...
attempting to conn...
Connected to MQTT Broker!
Flags: 0
 RC: 0
Subscribing to test/topic
Traceback (most recent call last):
  File "code.py", line 106, in <module>
  File "/lib/adafruit_minimqtt.py", line 501, in subscribe
MMQTTException: SUBACK Failure! <- This is OK, we didnt use the correct topic format for IO

minimqtt_adafruitio_eth.py

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.
code.py output:
Connecting to Adafruit IO...
Connected to Adafruit IO! Listening for topic changes on brubell/feeds/onoff
Sending photocell value: 0...
Sent!
Sending photocell value: 1...
Sent!
Sending photocell value: 2...
Sent!
Sending photocell value: 3...
Sent!

minimqtt_adafruitio_wifi.py

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.
code.py output:
Connecting to WiFi...
Failed to connect, retrying
 ('Failed to connect to ssid', b'TP-Link_519E')
Connected!
Connecting to Adafruit IO...
attempting to conn...
attempting to conn...
Connected to Adafruit IO! Listening for topic changes on brubell/feeds/onoff
Sending photocell value: 0...
Sent!
Sending photocell value: 1...
Sent!
Sending photocell value: 2...
Sent!
Sending photocell value: 3...
Sent!

minimqtt_pub_sub_blocking.py

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.
code.py output:
Connecting to WiFi...
Failed to connect, retrying
 ('Failed to connect to ssid', b'TP-Link_519E')
Connected!
Connecting to MQTT broker...
attempting to conn...
attempting to conn...
Connected to MQTT broker! Listening for topic changes on brubell/feeds/testfeed
Iteration # 0
Iteration # 1
Iteration # 2
Iteration # 3
....
Iteration # 298
Iteration # 299
Iteration # 300
Iteration # 301
Iteration # 302

minimqtt_pub_sub_pyportal

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.
code.py output:
ESP firmware: bytearray(b'1.6.0\x00')
Set background to  0
No SD card found: no SD card
Connecting to WiFi...
Failed to connect, retrying
 ('Failed to connect to ssid', b'TP-Link_519E')
Connected!
attempting to conn...
attempting to conn...
Subscribing to test/topic
Traceback (most recent call last):
  File "code.py", line 65, in <module>
  File "/lib/adafruit_minimqtt.py", line 308, in connect
  File "code.py", line 31, in connected
  File "/lib/adafruit_minimqtt.py", line 501, in subscribe
MMQTTException: SUBACK Failure! < THIS IS FINE, INVALID TOPIC ID SPECIFIED IN USER CODE!

minimqtt_pub_sub_nonblocking

Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.
code.py output:
Connecting to WiFi...
Connected!
attempting to conn...
attempting to conn...
Connected to MQTT broker! Listening for topic changes on brubell/feeds/testfeed
Sending photocell value: 0
New message on topic brubell/feeds/testfeed: 0
Sending photocell value: 1
New message on topic brubell/feeds/testfeed: 1
Sending photocell value: 2
New message on topic brubell/feeds/testfeed: 2
Sending photocell value: 3
New message on topic brubell/feeds/testfeed: 3
Sending photocell value: 4
New message on topic brubell/feeds/testfeed: 4
Sending photocell value: 5
New message on topic brubell/feeds/testfeed: 5
Sending photocell value: 6

@brentru brentru requested a review from a team March 12, 2020 21:49
@brentru brentru merged commit a9965a8 into adafruit:master Mar 17, 2020
adafruit-adabot added a commit to adafruit/Adafruit_CircuitPython_Bundle that referenced this pull request Mar 18, 2020
Updating https://github.com/adafruit/Adafruit_CircuitPython_AS726x to 1.1.0 from 1.0.6:
  > Merge pull request adafruit/Adafruit_CircuitPython_AS726x#12 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_AS726x#11 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_ATECC to 1.1.0 from 1.0.6:
  > Merge pull request adafruit/Adafruit_CircuitPython_ATECC#13 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_ATECC#14 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_BD3491FS to 1.1.0 from 1.0.4:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_BD3491FS#3 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_BD3491FS#4 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_BMP3XX to 1.2.0 from 1.1.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_BMP3XX#6 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_BMP3XX#7 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_CAP1188 to 1.2.0 from 1.1.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_CAP1188#14 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_CAP1188#13 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_DPS310 to 1.1.0 from 1.0.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_DPS310#1 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_DPS310#2 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_DS2413 to 1.2.0 from 1.1.6:
  > Merge pull request adafruit/Adafruit_CircuitPython_DS2413#19 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_DS2413#18 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_DS3502 to 1.1.0 from 1.0.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_DS3502#3 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_DS3502#4 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_DymoScale to 1.1.0 from 1.0.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_DymoScale#9 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_DymoScale#8 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_HTS221 to 1.1.0 from 1.0.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_HTS221#2 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_HTS221#1 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_HX8357 to 1.2.0 from 1.1.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_HX8357#10 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_HX8357#9 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_HX8357#8 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_ICM20649 to 1.1.0 from 1.0.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_ICM20X#3 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_ICM20X#4 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_IL0373 to 1.2.0 from 1.1.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_IL0373#10 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_IL0373#9 from adafruit/pylint_update
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'
  > Merge pull request adafruit/Adafruit_CircuitPython_IL0373#8 from adafruit/pylint_update

Updating https://github.com/adafruit/Adafruit_CircuitPython_IL0398 to 1.1.0 from 1.0.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_IL0398#8 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_IL0398#7 from adafruit/pylint_update
  > Merge pull request adafruit/Adafruit_CircuitPython_IL0398#6 from adafruit/pylint_update
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'
  > Merge pull request adafruit/Adafruit_CircuitPython_IL0398#5 from adafruit/pylint_update

Updating https://github.com/adafruit/Adafruit_CircuitPython_ILI9341 to 1.2.0 from 1.1.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_ILI9341#20 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_ILI9341#19 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_ILI9341#18 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_IRRemote to 3.5.0 from 3.4.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_IRRemote#35 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_IRRemote#34 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_LIS2MDL to 2.1.0 from 2.0.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_LIS2MDL#7 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_LIS2MDL#6 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_LIS3MDL to 1.1.0 from 1.0.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_LIS3MDL#7 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_LIS3MDL#6 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_LPS2X to 1.1.0 from 1.0.0:
  > Merge pull request adafruit/Adafruit_CircuitPython_LPS2X#2 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_LPS2X#1 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_LPS35HW to 1.2.0 from 1.1.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_LPS35HW#4 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_LPS35HW#3 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_LSM6DS to 2.1.0 from 2.0.2:
  > update pylintrc for black

Updating https://github.com/adafruit/Adafruit_CircuitPython_MAX31856 to 0.9.0 from 0.8.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_MAX31856#10 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MAX31856#9 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MAX9744 to 1.2.0 from 1.1.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_MAX9744#11 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MAX9744#10 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://www.github.com/adafruit/Adafruit_CircuitPython_MCP4728 to 1.1.0 from 1.0.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_MCP4728#4 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MCP4728#2 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MCP9600 to 1.1.0 from 1.0.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_MCP9600#12 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MCP9600#11 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MLX90614 to 1.2.0 from 1.1.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_MLX90614#16 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MLX90614#15 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MLX90640 to 1.1.0 from 1.0.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_MLX90640#10 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MLX90640#9 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MPL115A2 to 1.1.0 from 1.0.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_MPL115A2#7 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MPL115A2#6 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MPRLS to 1.2.0 from 1.1.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_MPRLS#10 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MPRLS#11 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MPU6050 to 1.1.0 from 1.0.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_MPU6050#7 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MPU6050#6 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MSA301 to 1.2.0 from 1.1.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MSA301#10 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_MSA301#9 from adafruit/pylint_update
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'
  > Merge pull request adafruit/Adafruit_CircuitPython_MSA301#8 from adafruit/pylint_update
  > Merge pull request adafruit/Adafruit_CircuitPython_MSA301#7 from adafruit/pylint_update

Updating https://github.com/adafruit/Adafruit_CircuitPython_Nunchuk to 0.2.0 from 0.1.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_Nunchuk#10 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_Nunchuk#9 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_Nunchuk#8 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_PCT2075 to 1.1.0 from 1.0.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_PCT2075#8 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_PCT2075#6 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_PyPortal to 3.2.0 from 3.1.11:
  > Merge pull request adafruit/Adafruit_CircuitPython_PyPortal#69 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_PyPortal#68 from sommersoft/patch_coc
  > update pylintrc for black

Updating https://github.com/adafruit/Adafruit_CircuitPython_RockBlock to 1.0.0 from cedd5b8:
  < Merge pull request adafruit/Adafruit_CircuitPython_RockBlock#5 from sommersoft/patch_coc_2

Updating https://github.com/adafruit/Adafruit_CircuitPython_RPLIDAR to 1.1.0 from 1.0.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_RPLIDAR#7 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_RPLIDAR#6 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SharpMemoryDisplay to 1.2.0 from 1.1.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_SharpMemoryDisplay#11 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SharpMemoryDisplay#10 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SI5351 to 1.2.0 from 1.1.6:
  > Merge pull request adafruit/Adafruit_CircuitPython_SI5351#13 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SI5351#12 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1305 to 1.2.0 from 1.1.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1305#7 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1305#6 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1306 to 2.8.0 from 2.7.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1306#44 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1306#43 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1322 to 1.1.0 from 1.0.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1322#8 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1322#7 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1322#6 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1327 to 1.1.0 from 1.0.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1327#5 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1327#4 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1331 to 1.2.0 from 1.1.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1331#10 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1331#9 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1331#8 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1351 to 1.2.0 from 1.1.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1351#12 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1351#11 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1351#10 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_SSD1608 to 1.2.0 from 1.1.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1608#7 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1608#6 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_SSD1608#5 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_ST7735 to 1.1.0 from 1.0.4:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_ST7735#11 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_ST7735#10 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_ST7735R to 1.3.0 from 1.2.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_ST7735R#17 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_ST7735R#16 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_ST7735R#15 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_ST7789 to 1.3.0 from 1.2.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_ST7789#16 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_ST7789#15 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_STMPE610 to 1.2.0 from 1.1.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_STMPE610#12 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_STMPE610#11 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_TFmini to 1.2.0 from 1.1.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_TFmini#7 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_TFmini#6 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_Thermistor to 3.3.0 from 3.2.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_Thermistor#13 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_Thermistor#12 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_TLC5947 to 1.3.0 from 1.2.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_TLC5947#20 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_TLC5947#19 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_TLC59711 to 1.2.0 from 1.1.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_TLC59711#12 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_TLC59711#11 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_TLV493D to 1.1.0 from 1.0.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_TLV493D#3 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_TLV493D#4 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_TMP006 to 2.1.0 from 2.0.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_TMP006#10 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_TMP006#9 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_TMP007 to 2.1.0 from 2.0.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_TMP007#9 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_TMP007#8 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_TPA2016 to 1.1.0 from 1.0.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_TPA2016#6 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_TPA2016#5 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_Trellis to 1.3.0 from 1.2.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_Trellis#14 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_Trellis#13 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_TrellisM4 to 1.5.0 from 1.4.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_TrellisM4#23 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_TrellisM4#22 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_VCNL4040 to 1.2.0 from 1.1.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_VCNL4040#9 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_VCNL4040#8 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_VEML6075 to 1.1.0 from 1.0.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_VEML6075#10 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_VEML6075#9 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_VEML7700 to 1.1.0 from 1.0.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_VEML7700#11 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_VEML7700#10 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_VS1053 to 1.2.0 from 1.1.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_VS1053#8 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_VS1053#9 from sommersoft/patch_coc
  > update pylintrc for black
  > Merge pull request adafruit/Adafruit_CircuitPython_VS1053#7 from sommersoft/build_yml_local_pip

Updating https://github.com/adafruit/Adafruit_CircuitPython_Wiznet5k to 1.3.0 from 1.2.0:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_Wiznet5k#11 from sommersoft/patch_coc

Updating https://github.com/adafruit/Adafruit_CircuitPython_AWS_IOT to 2.0.0 from 1.2.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_AWS_IOT#9 from brentru/minimqtt-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_AWS_IOT#10 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_AWS_IOT#8 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_GC_IOT_Core to 2.0.0 from 1.0.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_GC_IOT_Core#9 from brentru/update-minimqtt
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_GC_IOT_Core#10 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_GC_IOT_Core#8 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_GC_IOT_Core#7 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_AdafruitIO to 3.0.0 from 2.1.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_AdafruitIO#30 from brentru/minimqtt-update
  > Merge pull request adafruit/Adafruit_CircuitPython_AdafruitIO#31 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_AdafruitIO#32 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_AzureIoT to 1.1.0 from 1.0.3:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_AzureIoT#10 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_AzureIoT#9 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_AzureIoT#8 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_binascii to 1.2.0 from 1.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_binascii#8 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_binascii#9 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_BitmapSaver to 1.1.0 from 1.0.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_BitmapSaver#11 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_BitmapSaver#10 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_BitmapSaver#9 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_BLE to 6.1.0 from 6.0.0:
  > Merge pull request adafruit/Adafruit_CircuitPython_BLE#74 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_BLE#73 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_CursorControl to 2.2.0 from 2.1.4:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_CursorControl#20 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_CursorControl#19 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_CursorControl#18 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_CursorControl#17 from brentru/fix-for-pylint
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_Debouncer to 1.3.0 from 1.2.0:
  > Merge pull request adafruit/Adafruit_CircuitPython_Debouncer#15 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_Debouncer#16 from sommersoft/patch_coc

Updating https://github.com/adafruit/Adafruit_CircuitPython_Gizmo to 1.2.0 from 1.1.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_Gizmo#12 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_Gizmo#11 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_hashlib to 1.3.0 from 1.2.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_hashlib#10 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_hashlib#11 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_Hue to 1.1.0 from 1.0.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_Hue#12 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_Hue#11 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_ImageLoad to 0.10.0 from 0.9.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_ImageLoad#27 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_ImageLoad#26 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_IterTools to 1.1.0 from 1.0.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_IterTools#8 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_IterTools#7 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_JWT to 1.1.0 from 1.0.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_JWT#7 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_JWT#6 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_JWT#5 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_LIFX to 1.1.0 from 1.0.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_LIFX#8 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_LIFX#7 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MIDI to 1.2.0 from 1.1.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_MIDI#21 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MIDI#20 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_miniesptool to 0.2.0 from 0.1.6:
  > Merge pull request adafruit/Adafruit_CircuitPython_miniesptool#15 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_miniesptool#17 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_MiniMQTT to 2.0.0 from 1.1.8:
  > Merge pull request adafruit/Adafruit_CircuitPython_MiniMQTT#21 from brentru/update-for-ethernet
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_MiniMQTT#22 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_MiniMQTT#23 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_miniQR to 1.3.0 from 1.2.2:
  > Merge pull request adafruit/Adafruit_CircuitPython_miniQR#15 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_miniQR#13 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_NTP to 1.1.0 from 1.0.2:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_NTP#8 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_NTP#9 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_ProgressBar to 1.2.0 from 1.1.1:
  > Merge pull request adafruit/Adafruit_CircuitPython_ProgressBar#4 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_ProgressBar#3 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_PyBadger to 2.2.0 from 2.1.4:
  > Merge pull request adafruit/Adafruit_CircuitPython_PyBadger#30 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_PyBadger#29 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_PYOA to 2.2.0 from 2.1.1:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_PYOA#19 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_PYOA#18 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_RSA to 1.1.0 from 1.0.3:
  > Merge pull request adafruit/Adafruit_CircuitPython_RSA#10 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_RSA#9 from sommersoft/patch_coc
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_turtle to 2.1.0 from 2.0.0:
  > Merge pull request adafruit/Adafruit_CircuitPython_turtle#21 from adafruit/pylint-update
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_turtle#19 from sommersoft/patch_coc
  > update pylintrc for black

Updating https://github.com/adafruit/Adafruit_CircuitPython_WSGI to 1.1.0 from 1.0.0:
  > update code of coduct: discord moderation contact section
  > Merge pull request adafruit/Adafruit_CircuitPython_WSGI#5 from sommersoft/patch_coc
  > Merge pull request adafruit/Adafruit_CircuitPython_WSGI#4 from adafruit/pylint-update
  > Merge pull request adafruit/Adafruit_CircuitPython_WSGI#3 from adafruit/pylint-update
  > update pylintrc for black
  > build.yml: move pylint, black, and Sphinx installs to each repo; add description to 'actions-ci/install.sh'

Updating https://github.com/adafruit/Adafruit_CircuitPython_Bundle/circuitpython_library_list.md to NA from NA:
  > Added the following libraries: Adafruit_CircuitPython_RockBlock
rtwfroody pushed a commit to rtwfroody/Adafruit_CircuitPython_MiniMQTT that referenced this pull request Sep 18, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants