8000 Actions: Add Python 3.9 · laike9m/msgpack-python@edd5603 · GitHub
[go: up one dir, main page]

Skip to content

Commit edd5603

Browse files
committed
Actions: Add Python 3.9
1 parent d893697 commit edd5603

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

.github/workflows/linux.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,17 @@ jobs:
4747
pytest -v test
4848
4949
50+
- name: Set up Python 3.9
51+
uses: actions/setup-python@v1
52+
with:
53+
python-version: 3.9
54+
55+
- name: Run test (3.9)
56+
run: |
57+
pip install pytest
58+
pip install -v msgpack --only-binary :all: --no-index -f dist/wheelhouse
59+
pytest -v test
60+
5061
- name: Set up Python 3.7
5162
uses: actions/setup-python@v1
5263
with:

.github/workflows/mac.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,23 @@ jobs:
3535
pytest -v test
3636
3737
38+
- name: Set up Python 3.9
39+
uses: actions/setup-python@v1
40+
with:
41+
python-version: "3.9"
42+
43+
- name: Build wheel
44+
run: |
45+
pip install setuptools wheel
46+
python setup.py bdist_wheel
47+
48+
- name: Run test
49+
run: |
50+
pip install pytest
51+
pip install -v msgpack --only-binary :all: -f dist/ --no-index
52+
pytest -v test
53+
54+
3855
- name: Set up Python 3.7
3956
uses: actions/setup-python@v1
4057
with:

.github/workflows/windows.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,20 @@ jobs:
6363
run: |
6464
ci/runtests.sh
6565
66+
- name: Python 3.9 (amd64)
67+
env:
68+
PYTHON: "py -3.9-64"
69+
shell: bash
70+
run: |
71+
ci/runtests.sh
72+
73+
- name: Python 3.9 (x86)
74+
env:
75+
PYTHON: "py -3.9-32"
76+
shell: bash
77+
run: |
78+
ci/runtests.sh
79+
6680
- name: Upload Wheels
6781
uses: actions/upload-artifact@v1
6882
with:

0 commit comments

Comments
 (0)
0