Skip to content

Test against Python 3.9 #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Changelog

* Fix a warning with setuptools.
Thanks :user:`felixonmars` for the catch and patch.
* Test against Python 3.9.

0.5.2 (2019-11-21)
++++++++++++++++++
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ resources:
jobs:
- template: job--python-tox.yml@sloria
parameters:
toxenvs: [lint, py36, py37, py38, py38-apispecdev]
toxenvs: [lint, py36, py37, py38, py39, py39-apispecdev]
os: linux
- template: job--pypi-release.yml@sloria
parameters:
python: "3.7"
python: "3.9"
distributions: "sdist bdist_wheel"
dependsOn:
- tox_linux
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ def read(fname):
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
test_suite="tests",
project_urls={
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist=
lint
py{36,37,38}
py38-apispecdev
py{36,37,38,39}
py39-apispecdev

[testenv]
extras = tests
Expand Down