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/mac.yml | |
| 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/mac.yml')
| -rw-r--r-- | .github/workflows/mac.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 78d944c..4efe2ca 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -35,10 +35,10 @@ jobs: pytest -v test - - name: Set up Python 3.9 + - name: Set up Python 3.10 uses: actions/setup-python@v1 with: - python-version: "3.9" + python-version: "3.10" - name: Build wheel run: | @@ -52,10 +52,10 @@ jobs: pytest -v test - - name: Set up Python 3.7 + - name: Set up Python 3.9 uses: actions/setup-python@v1 with: - python-version: "3.7" + python-version: "3.9" - name: Build wheel run: | @@ -69,10 +69,10 @@ jobs: pytest -v test - - name: Set up Python 3.6 + - name: Set up Python 3.7 uses: actions/setup-python@v1 with: - python-version: "3.6" + python-version: "3.7" - name: Build wheel run: | |
