From 932f29536845d82ee26e3e64df00df9a311c3dbf Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 24 Apr 2023 14:31:37 +0200 Subject: [PATCH] GitHub Actions: Start testing on Python 3.12-dev --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e514dc72..552032b1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,8 @@ jobs: - "3.8" - "3.9" - "3.10" - - "3.11-dev" + - "3.11" + - "3.12-dev" - "pypy-2.7" - "pypy-3.7" - "pypy-3.8" @@ -68,7 +69,7 @@ jobs: ref: ${{ inputs.tag || github.ref }} - uses: "actions/setup-python@v4" with: - python-version: "3.10" + python-version: "3.11" cache: "pip" - name: "Update pip" run: python -m pip install --upgrade pip setuptools wheel @@ -77,14 +78,14 @@ jobs: - name: "Run 'build'" run: "python -m build" - name: "Upload sdist artifact" - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: sdist path: | dist/pyasn1*.tar.gz if-no-files-found: error - name: "Upload wheel artifact" - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: wheel path: |