From 8cef6282191696e1df480016b8247c654cee9826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alban=20F=C3=A9ron?= Date: Wed, 25 Nov 2020 21:24:59 +0100 Subject: [PATCH] Advertising (and testing) Python 3.9 support --- .github/workflows/tests.yaml | 1 + README.md | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index d3e58e9..977c37f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -15,6 +15,7 @@ jobs: - 3.6 - 3.7 - 3.8 + - 3.9 fail-fast: false steps: - name: Checkout diff --git a/README.md b/README.md index f11d765..4b6dd37 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ _Supysonic_ is a Python implementation of the [Subsonic][] server API. ![Build Status](https://github.com/spl0k/supysonic/workflows/Tests/badge.svg) [![codecov](https://codecov.io/gh/spl0k/supysonic/branch/master/graph/badge.svg)](https://codecov.io/gh/spl0k/supysonic) -![Python](https://img.shields.io/badge/python-3.5%2C%203.6%2C%203.7%2C%203.8-blue.svg) +![Python](https://img.shields.io/badge/python-3.5--3.9-blue.svg) Current supported features are: * browsing (by folders or tags) diff --git a/setup.py b/setup.py index 4b94f9a..d5f4363 100644 --- a/setup.py +++ b/setup.py @@ -56,6 +56,7 @@ setup( "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Topic :: Multimedia :: Sound/Audio", ], )