Skip to content

Commit 1d62c4b

Browse files
authored
Merge pull request #734 from seleniumbase/expand-ci
Expand CI with Python 3.9
2 parents 14fde3c + 2725098 commit 1d62c4b

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111

1212
runs-on: ubuntu-18.04
1313
strategy:
14-
max-parallel: 5
14+
max-parallel: 6
1515
matrix:
16-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
16+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
1717

1818
steps:
1919
- uses: actions/checkout@v1

azure-pipelines.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,19 @@ jobs:
1111
vmImage: 'Ubuntu-18.04'
1212
strategy:
1313
matrix:
14-
Python27:
14+
Python2.7:
1515
python.version: '2.7'
16-
Python35:
16+
Python3.5:
1717
python.version: '3.5'
18-
Python36:
18+
Python3.6:
1919
python.version: '3.6'
20-
Python37:
20+
Python3.7:
2121
python.version: '3.7'
22-
Python38:
22+
Python3.8:
2323
python.version: '3.8'
24-
maxParallel: 5
24+
Python3.9:
25+
python.version: '3.9'
26+
maxParallel: 6
2527

2628
steps:
2729
- task: UsePythonVersion@0
@@ -81,7 +83,7 @@ jobs:
8183
#- job: 'Publish'
8284
# dependsOn: 'Test'
8385
# pool:
84-
# vmImage: 'Ubuntu-16.04'
86+
# vmImage: 'Ubuntu-18.04'
8587

8688
# steps:
8789
# - task: UsePythonVersion@0

0 commit comments

Comments
 (0)