Skip to content

Commit

Permalink
Support Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jodal committed Oct 22, 2020
1 parent 5ebce75 commit 06be362
Show file tree
Hide file tree
Showing 4 changed files with 12 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,6 +7,7 @@ workflows:
version: 2
test:
jobs:
- py39
- py38
- py37
- black
Expand All @@ -16,9 +17,9 @@ workflows:
- isort

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 @@ -41,6 +42,11 @@ jobs:
- store_test_results:
path: test-results

py38:
<<: *test-template
docker:
- image: mopidy/ci-python:3.8

py37:
<<: *test-template
docker:
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ For older releases, see :ref:`history`.
v3.1.0 (UNRELEASED)
===================

- Add Python 3.9 to our test matrix.

- Add :meth:`mopidy.backend.PlaybackProvider.should_download` which can be
implemented by playback providers that want to use GStreamer's download
buffering strategy for their URIs. (PR: :issue:`1888`)
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,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, docs, flake8
envlist = py37, py38, py39, black, check-manifest, docs, flake8

[testenv]
sitepackages = true
Expand Down

0 comments on commit 06be362

Please sign in to comment.