mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-09 19:52:16 +00:00
Drop Python 3.5
This commit is contained in:
parent
632b1bc835
commit
98ff73738d
1
.github/workflows/tests.yaml
vendored
1
.github/workflows/tests.yaml
vendored
@ -11,7 +11,6 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
- 3.5
|
|
||||||
- 3.6
|
- 3.6
|
||||||
- 3.7
|
- 3.7
|
||||||
- 3.8
|
- 3.8
|
||||||
|
@ -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)
|
![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)
|
[![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--3.9-blue.svg)
|
![Python](https://img.shields.io/badge/python-3.6--3.9-blue.svg)
|
||||||
|
|
||||||
Current supported features are:
|
Current supported features are:
|
||||||
* browsing (by folders or tags)
|
* browsing (by folders or tags)
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
Installing Supysonic
|
Installing Supysonic
|
||||||
====================
|
====================
|
||||||
|
|
||||||
Supysonic is written in Python and supports Python 3.5+.
|
Supysonic is written in Python and supports Python 3.6 through 3.9. Python 3.10
|
||||||
|
and later are not yet supported.
|
||||||
|
|
||||||
Linux
|
Linux
|
||||||
-----
|
-----
|
||||||
@ -44,15 +45,16 @@ the installation of Python itself. To check if you already have Python
|
|||||||
installed, open the *Command Prompt* (:kbd:`Win-R` and type :command:`cmd`).
|
installed, open the *Command Prompt* (:kbd:`Win-R` and type :command:`cmd`).
|
||||||
Once the command prompt is open, type :command:`python --version` and press
|
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
|
Enter. If Python is installed, you will see the version of Python printed to
|
||||||
the screen. If you do not have Python installed, refer to the `Hitchhikers
|
the screen. If you do not have Python installed, head over to the `Python
|
||||||
Guide to Python's`__ Python on Windows installation guides. You must install
|
website`__ and install one of the `compatible Python versions`__. You need at
|
||||||
`Python 3`__.
|
least Python 3.6, but you can go up to the latest 3.9.
|
||||||
|
|
||||||
Once Python is installed, you can install Supysonic using :command:`pip`. Refer
|
Once Python is installed, you can install Supysonic using :command:`pip`. Refer
|
||||||
to the `installation instructions <pip_>`_ below for more information.
|
to the `installation instructions <pip_>`_ below for more information.
|
||||||
|
|
||||||
__ https://docs.python-guide.org/
|
__ https://www.python.org/
|
||||||
__ https://docs.python-guide.org/starting/install3/win/
|
__ https://www.python.org/downloads/windows/
|
||||||
|
|
||||||
|
|
||||||
.. _pip:
|
.. _pip:
|
||||||
|
|
||||||
|
@ -41,7 +41,6 @@ classifiers =
|
|||||||
Intended Audience :: System Administrators
|
Intended Audience :: System Administrators
|
||||||
License :: OSI Approved :: GNU Affero General Public License v3
|
License :: OSI Approved :: GNU Affero General Public License v3
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.5
|
|
||||||
Programming Language :: Python :: 3.6
|
Programming Language :: Python :: 3.6
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
@ -49,7 +48,7 @@ classifiers =
|
|||||||
Topic :: Multimedia :: Sound/Audio
|
Topic :: Multimedia :: Sound/Audio
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.5,<3.10
|
python_requires = >=3.6,<3.10
|
||||||
install_requires =
|
install_requires =
|
||||||
click
|
click
|
||||||
flask >=0.11
|
flask >=0.11
|
||||||
|
Loading…
Reference in New Issue
Block a user