From c3df5c87ce9234716ed752f509615ced22b89dbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Mar 2021 11:43:51 +0000 Subject: [PATCH 1/2] Bump pillow from 7.0.0 to 8.1.1 in /src Bumps [pillow](https://github.com/python-pillow/Pillow) from 7.0.0 to 8.1.1. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/7.0.0...8.1.1) Signed-off-by: dependabot[bot] --- src/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/requirements.txt b/src/requirements.txt index 66da4eb1..c13eef60 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -6,7 +6,7 @@ pywin32==227; platform_system == "Windows" PyObjC; platform_system == "darwin" uflash==1.3.0 adafruit-circuitpython-fancyled==1.3.3 -Pillow==7.0.0 +Pillow==8.1.1 adafruit-circuitpython-bitmap_font==1.1.0 adafruit-circuitpython-display-shapes==1.2.0 adafruit-circuitpython-neopixel==5.0.0 \ No newline at end of file From 9a0c176def2598ad5b7874d6fa16293e9f912912 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 19 Mar 2021 11:11:46 -0700 Subject: [PATCH 2/2] Update GitHub Actions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86461b91..93eb4fa7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,12 +29,12 @@ jobs: sudo apt-get install -y build-essential sudo apt-get install libudev-dev - name: Use Node.js ${{ matrix.node-version }} and install npm dependencies - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm install - name: Setup Python environment - uses: actions/setup-python@v1.1.1 + uses: actions/setup-python@v2 with: python-version: 3.x - run: |