From 674d00183e020d5d80a81d295f78e600af7cb09b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 11 Feb 2023 22:07:48 +0200 Subject: [PATCH] Update deps --- .github/workflows/docs.yml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2765b55d..9a64d882 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -65,7 +65,7 @@ jobs: mkdir ./${{ env.LATEST_DOCS_DIR }} tar -xzf ./docs.tar.gz -C ./${{ env.LATEST_DOCS_DIR }} - name: Delete Artifact - uses: geekyeggo/delete-artifact@v1 + uses: geekyeggo/delete-artifact@v2 with: name: docs - name: Select Docs type diff --git a/setup.py b/setup.py index c04b7fdb..745bebce 100644 --- a/setup.py +++ b/setup.py @@ -42,9 +42,9 @@ minimal_requirements = [ ] home_requirements = [ - "aiofiles==%s" % ("0.8.0" if PY36 else "22.1.*"), + "aiofiles==%s" % ("0.8.0" if PY36 else "23.1.*"), "ajsonrpc==1.*", - "starlette==%s" % ("0.19.1" if PY36 else "0.23.*"), + "starlette==%s" % ("0.19.1" if PY36 else "0.24.*"), "uvicorn==%s" % ("0.16.0" if PY36 else "0.20.*"), "wsproto==%s" % ("1.0.0" if PY36 else "1.2.*"), ]