Skip to content

Commit 98b8488

Browse files
committed
v0.7.0rc1
1 parent 39c5bff commit 98b8488

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ Unofficial Python API for TIDAL music streaming service.
1414
0.7.0 Rewrite
1515
-------------
1616

17-
This is an experimental branch for the 0.7.0 rewrite. It is mostly finished, but it is missing somme documentation
18-
and a new explore endpoint containing moods, featured items, suggestions and so on.
17+
This is the development branch for the 0.7.0 rewrite. See https://github.com/tamland/python-tidal/issues/109 for more details
1918

2019
Installation
2120
------------

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Thomas Amland, morguldir'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.7.0'
25+
release = '0.7.0rc1'
2626

2727

2828
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name='tidalapi',
24-
version='0.7.0',
24+
version='0.7.0rc1',
2525
description='Unofficial API for TIDAL music streaming service.',
2626
long_description=long_description,
2727
author='Thomas Amland',
@@ -40,9 +40,9 @@
4040
"Programming Language :: Python :: 2",
4141
'Programming Language :: Python :: 2.7',
4242
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.6',
4443
'Programming Language :: Python :: 3.7',
4544
'Programming Language :: Python :: 3.8',
4645
'Programming Language :: Python :: 3.9',
46+
'Programming Language :: Python :: 3.10',
4747
],
4848
)

tidalapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121

2222
from .request import Requests
2323

24-
__version__ = "0.7.0"
24+
__version__ = "0.7.0rc1"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py36,py37,py38,py39
2+
envlist = py27,py37,py38,py39,py310
33
#pypy,pypy3 pypy currently doesn't work with opencv
44

55
[testenv]

0 commit comments

Comments
 (0)