Skip to content

Commit deb2dca

Browse files
authored
Merge pull request #435 from tonybaloney/patch-2
Remove 3.5 from CI test, check 3.8-3.11
2 parents 558bfd9 + 135ffda commit deb2dca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pythonpackage.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99
strategy:
1010
max-parallel: 5
1111
matrix:
12-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
12+
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10"]
1313

1414
steps:
1515
- uses: actions/checkout@v1
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v2
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install msrest
23+
pip install "msrest>=0.6.0,<0.7.0"
2424
- name: Python compile
2525
run: |
2626
python -m compileall .

0 commit comments

Comments
 (0)