Skip to content

Commit

Permalink
Enable Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kbattocchi committed Jun 9, 2020
1 parent 7440f10 commit b5e38c6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion azure-pipelines-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ steps:
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))

# Install the package
- script: 'python -m pip install --upgrade pip && pip install --upgrade setuptools && pip install ${{ parameters.package }}'
- script: 'python -m pip install --upgrade pip && pip install --upgrade setuptools wheel && pip install ${{ parameters.package }}'
displayName: 'Install dependencies'

- ${{ parameters.body }}
9 changes: 9 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,15 @@ jobs:
Windows, Python 3.7:
imageName: 'vs2017-win2016'
python.version: '3.7'
Linux, Python 3.8:
imageName: 'ubuntu-16.04'
python.version: '3.8'
macOS, Python 3.8:
imageName: 'macOS-10.15'
python.version: '3.8'
Windows, Python 3.8:
imageName: 'vs2017-win2016'
python.version: '3.8'

pool:
vmImage: $(imageName)
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
License :: OSI Approved :: MIT License
Operating System :: OS Independent

Expand Down

0 comments on commit b5e38c6

Please sign in to comment.