From 2fa1c7a22608d3c3125976c2258a5cb2d175f482 Mon Sep 17 00:00:00 2001 From: youngfreeFJS Date: Tue, 11 Apr 2023 20:41:36 +0800 Subject: [PATCH 1/3] feat(core): support Python3.11 --- requirements.txt.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt.lock b/requirements.txt.lock index 049066df2..d5d37046a 100644 --- a/requirements.txt.lock +++ b/requirements.txt.lock @@ -1,4 +1,4 @@ -aiohttp==3.8.1 +aiohttp==3.8.3 aiosignal==1.2.0 aniso8601==9.0.1 async-timeout==4.0.2 @@ -24,7 +24,7 @@ MarkupSafe==2.1.1 multidict==6.0.2 netifaces==0.11.0 packaging==19.0 -Pillow==9.1.1 +Pillow==9.4.0 portpicker==1.3.1 pycodestyle==2.9.1 pyparsing==3.0.9 From f1987f3db33ac4a6d82f1b37c3ccd800f793fe1b Mon Sep 17 00:00:00 2001 From: youngfreeFJS Date: Tue, 11 Apr 2023 20:42:28 +0800 Subject: [PATCH 2/3] feat(core): add 3.11 test matrix --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 735b5a427..75bd12d03 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: unittest: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] runs-on: macos-latest name: Python ${{ matrix.python-version }} tests steps: From 739c227df133edc72b0c0a459326e7fd147ebd99 Mon Sep 17 00:00:00 2001 From: youngfreeFJS Date: Wed, 12 Apr 2023 18:09:07 +0800 Subject: [PATCH 3/3] feat(core): add nodejs action v16 --- .github/workflows/gh-pages.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index d0c510e23..8cb153c41 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -16,6 +16,10 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - name: Install and Build 🔧 run: | cd docs