From 07f12b1d0862922efdeb8391c45c1971a8e7f02f Mon Sep 17 00:00:00 2001 From: Nick Steel Date: Sun, 6 Dec 2020 23:09:41 +0000 Subject: [PATCH] Support Python 3.9 --- .circleci/config.yml | 10 ++++++++-- setup.cfg | 1 + tox.ini | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bfd4689..d225883 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,7 @@ workflows: version: 2 test: jobs: + - py39 - py38 - py37 - black @@ -14,9 +15,9 @@ workflows: - flake8 jobs: - py38: &test-template + py39: &test-template docker: - - image: mopidy/ci-python:3.8 + - image: mopidy/ci-python:3.9 steps: - checkout - restore_cache: @@ -39,6 +40,11 @@ jobs: - store_test_results: path: test-results + py38: + <<: *test-template + docker: + - image: mopidy/ci-python:3.8 + py37: <<: *test-template docker: diff --git a/setup.cfg b/setup.cfg index a5ca20b..8a63299 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,6 +16,7 @@ classifiers = Programming Language :: Python :: 3 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 Topic :: Multimedia :: Sound/Audio :: Players diff --git a/tox.ini b/tox.ini index 5d5676f..f8c42cc 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37, py38, black, check-manifest, flake8 +envlist = py37, py38, py39, black, check-manifest, flake8 [testenv] sitepackages = true