diff options
| author | Inada Naoki <songofacandy@gmail.com> | 2021-11-16 16:19:47 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-16 16:19:47 +0900 |
| commit | b3f72541925cda3b018942db45a59936184727e3 (patch) | |
| tree | cc292c34c376f7ee2065fc215a1ba322702c45f5 /.github/workflows/windows.yaml | |
| parent | 9b84e490e7c78ac9bbd76dcf9ce71c1d0c978d81 (diff) | |
| download | msgpack-python-b3f72541925cda3b018942db45a59936184727e3.tar.gz | |
Support Python 3.10 and Drop Python 3.5 (#487)
* linux: Use manylinux2014
* mac: Drop Python 3.6 too
Diffstat (limited to '.github/workflows/windows.yaml')
| -rw-r--r-- | .github/workflows/windows.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 139a5a6..debe074 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -77,6 +77,20 @@ jobs: run: | ci/runtests.sh + - name: Python 3.10 (amd64) + env: + PYTHON: "py -3.10-64" + shell: bash + run: | + ci/runtests.sh + + - name: Python 3.10 (x86) + env: + PYTHON: "py -3.10-32" + shell: bash + run: | + ci/runtests.sh + - name: Upload Wheels uses: actions/upload-artifact@v1 with: |
