Skip to content

Commit

Permalink
Merge pull request #38 from jodal/py39
Browse files Browse the repository at this point in the history
Support Python 3.9
  • Loading branch information
jodal authored Dec 5, 2020
2 parents 1f22db2 + 2165a8a commit 2d38802
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@ workflows:
version: 2
test:
jobs:
- py39
- py38
- py37
- black
- check-manifest
- 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:
Expand All @@ -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:
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, black, check-manifest, flake8
envlist = py37, py38, py39, black, check-manifest, flake8

[testenv]
sitepackages = true
Expand Down

0 comments on commit 2d38802

Please sign in to comment.