mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
Actions: Add Python 3.9
This commit is contained in:
parent
d893697eab
commit
edd5603661
3 changed files with 42 additions and 0 deletions
11
.github/workflows/linux.yml
vendored
11
.github/workflows/linux.yml
vendored
|
|
@ -47,6 +47,17 @@ jobs:
|
|||
pytest -v test
|
||||
|
||||
|
||||
- name: Set up Python 3.9
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.9
|
||||
|
||||
- name: Run test (3.9)
|
||||
run: |
|
||||
pip install pytest
|
||||
pip install -v msgpack --only-binary :all: --no-index -f dist/wheelhouse
|
||||
pytest -v test
|
||||
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
|
|
|
|||
17
.github/workflows/mac.yml
vendored
17
.github/workflows/mac.yml
vendored
|
|
@ -35,6 +35,23 @@ jobs:
|
|||
pytest -v test
|
||||
|
||||
|
||||
- name: Set up Python 3.9
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: "3.9"
|
||||
|
||||
- name: Build wheel
|
||||
run: |
|
||||
pip install setuptools wheel
|
||||
python setup.py bdist_wheel
|
||||
|
||||
- name: Run test
|
||||
run: |
|
||||
pip install pytest
|
||||
pip install -v msgpack --only-binary :all: -f dist/ --no-index
|
||||
pytest -v test
|
||||
|
||||
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
|
|
|
|||
14
.github/workflows/windows.yaml
vendored
14
.github/workflows/windows.yaml
vendored
|
|
@ -63,6 +63,20 @@ jobs:
|
|||
run: |
|
||||
ci/runtests.sh
|
||||
|
||||
- name: Python 3.9 (amd64)
|
||||
env:
|
||||
PYTHON: "py -3.9-64"
|
||||
shell: bash
|
||||
run: |
|
||||
ci/runtests.sh
|
||||
|
||||
- name: Python 3.9 (x86)
|
||||
env:
|
||||
PYTHON: "py -3.9-32"
|
||||
shell: bash
|
||||
run: |
|
||||
ci/runtests.sh
|
||||
|
||||
- name: Upload Wheels
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue