From a34446a0025ef640b8f9f0a8d5ee260fd7a2ab24 Mon Sep 17 00:00:00 2001 From: Fantix King Date: Thu, 6 Jul 2023 16:11:01 -0400 Subject: [PATCH 1/2] Bump bundled llhttp to 8.1.1 --- vendor/llhttp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/llhttp b/vendor/llhttp index 6d954cb..caed04d 160000 --- a/vendor/llhttp +++ b/vendor/llhttp @@ -1 +1 @@ -Subproject commit 6d954cbdc7f641f0a63a4427cf4d6be397f74ee8 +Subproject commit caed04d6c1251e54c642bddfc7d0330af234f0d3 From 1f2e91d79f734e51ad930ec277e25b7d7a3a5b7b Mon Sep 17 00:00:00 2001 From: Fantix King Date: Thu, 6 Jul 2023 16:22:33 -0400 Subject: [PATCH 2/2] Drop Python 3.5/3.6 in CI/CD However Python 3.5 is kept in setup.py --- .github/workflows/release.yml | 4 ---- .github/workflows/tests.yml | 8 +------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3041542..bc02466 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,6 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] cibw_arch: ["auto64", "aarch64", "universal2"] cibw_python: - - "cp36-*" - "cp37-*" - "cp38-*" - "cp39-*" @@ -84,9 +83,6 @@ jobs: cibw_arch: universal2 - os: macos-latest cibw_arch: aarch64 - - os: macos-latest - cibw_python: "cp36-*" - cibw_arch: universal2 - os: macos-latest cibw_python: "cp37-*" cibw_arch: universal2 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b0b4e5c..902f564 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,14 +14,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-rc.2"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] os: [windows-latest, ubuntu-latest, macos-latest] - exclude: - # Python 3.5 is unable to properly - # find the recent VS tooling - # https://bugs.python.org/issue30389 - - os: windows-latest - python-version: 3.5 env: PIP_DISABLE_PIP_VERSION_CHECK: 1