Skip to content

Commit

Permalink
Replaced typing by pyyaml and added python 3.9 to environment (rytila…
Browse files Browse the repository at this point in the history
  • Loading branch information
legacycode authored and xvlady committed May 9, 2021
1 parent 95be24b commit 2e1e23e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
12 changes: 12 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ stages:
python.version: '3.8'
vmImage: 'ubuntu-latest'

Python 3.9 Ubuntu:
python.version: '3.9'
vmImage: 'ubuntu-latest'

PyPy Ubuntu:
python.version: pypy3
vmImage: 'ubuntu-latest'
Expand All @@ -87,6 +91,10 @@ stages:
python.version: '3.8'
vmImage: 'windows-latest'

Python 3.9 Windows:
python.version: '3.9'
vmImage: 'windows-latest'

Python 3.6 OSX:
python.version: '3.6'
vmImage: 'macOS-latest'
Expand All @@ -99,6 +107,10 @@ stages:
python.version: '3.8'
vmImage: 'macOS-latest'

Python 3.9 OSX:
python.version: '3.9'
vmImage: 'macOS-latest'

pool:
vmImage: $(vmImage)

Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
[tox]
envlist=py36,py37,py38,lint,typing,docs,pypi-description
envlist=py36,py37,py38,py39,lint,typing,docs,pypi-description
skip_missing_interpreters = True
isolated_build = True

[tox:travis]
3.6 = py36
3.7 = py37
3.8 = py38
3.9 = py39

[testenv]
deps=
pytest
pytest-cov
pytest-mock
voluptuous
typing
pyyaml
flake8
coverage[toml]
importlib_metadata
Expand All @@ -27,6 +28,7 @@ extras=docs
deps=
sphinx
doc8
pyyaml
restructuredtext_lint
sphinx-autodoc-typehints
sphinx-click
Expand Down

0 comments on commit 2e1e23e

Please sign in to comment.