From e11e775baf99035899f22aa358b4a42fde88f3a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alban=20F=C3=A9ron?= Date: Sun, 30 Jan 2022 16:37:09 +0100 Subject: [PATCH] Pony now has a stable release for Python 3.10 so we're compatible on this version too Closes #230 --- .github/workflows/tests.yaml | 2 +- README.md | 2 +- docs/setup/install.rst | 5 ++--- setup.cfg | 3 ++- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e38830a..6f8fa60 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -29,7 +29,7 @@ jobs: - 3.7 - 3.8 - 3.9 - #- "3.10" + - "3.10" fail-fast: false steps: - name: Checkout diff --git a/README.md b/README.md index 1075678..7cfcc06 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.6--3.9-blue.svg) +![Python](https://img.shields.io/badge/python-3.6--3.10-blue.svg) Current supported features are: * browsing (by folders or tags) diff --git a/docs/setup/install.rst b/docs/setup/install.rst index 693b574..089bae1 100644 --- a/docs/setup/install.rst +++ b/docs/setup/install.rst @@ -1,8 +1,7 @@ Installing Supysonic ==================== -Supysonic is written in Python and supports Python 3.6 through 3.9. Python 3.10 -and later are not yet supported. +Supysonic is written in Python and supports Python 3.6 through 3.10. Linux ----- @@ -47,7 +46,7 @@ Once the command prompt is open, type :command:`python --version` and press Enter. If Python is installed, you will see the version of Python printed to the screen. If you do not have Python installed, head over to the `Python website`__ and install one of the `compatible Python versions`__. You need at -least Python 3.6, but you can go up to the latest 3.9. +least Python 3.6, but you can go up to the latest 3.10. Once Python is installed, you can install Supysonic using :command:`pip`. Refer to the `installation instructions `_ below for more information. diff --git a/setup.cfg b/setup.cfg index 254b218..341be85 100644 --- a/setup.cfg +++ b/setup.cfg @@ -45,10 +45,11 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Topic :: Multimedia :: Sound/Audio [options] -python_requires = >=3.6,<3.10 +python_requires = >=3.6,<3.11 install_requires = click flask >=0.11