Skip to content

Commit

Permalink
Merge pull request #423 from plamere/bump-2.6.2
Browse files Browse the repository at this point in the history
Bump to 2.6.2
  • Loading branch information
stephanebruckert authored Jan 16, 2020
2 parents 8c4493d + ab75d3d commit fc0c456
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.6.2] - 2020-01-16

### Fixed

- Fixed broken examples in README, examples and doc
Expand Down
5 changes: 3 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ API <https://developer.spotify.com/web-api/>`_ documentation.

Installation
============
Install or upgrade *Spotipy* with:
Install or upgrade *Spotipy* with::

pip install spotipy --upgrade

Expand Down Expand Up @@ -171,7 +171,7 @@ in comparison with requests to the Web API made without an access token,
is that a higher rate limit is applied.

To support the **Client Credentials Flow** *Spotipy* provides a
class SpotifyClientCredentials that can be used to authenticate requests like so:
class SpotifyClientCredentials that can be used to authenticate requests like so::


import spotipy
Expand Down Expand Up @@ -353,6 +353,7 @@ Spotipy authored by Paul Lamere (plamere) with contributions by:
- Michael Birtwell // mbirtwell
- Harrison Hayes // Harrison97
- Stephane Bruckert // stephanebruckert
- Ritiek Malhotra // ritiek

License
=======
Expand Down
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from setuptools import setup

desc = """### A light weight Python library for the Spotify Web API"""
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()

setup(
name='spotipy',
version='2.6.1',
long_description=desc,
long_description_content_type='text/markdown',
version='2.6.2',
description='A light weight Python library for the Spotify Web API',
long_description=long_description,
long_description_content_type="text/markdown",
author="@plamere",
author_email="[email protected]",
url='http://spotipy.readthedocs.org/',
Expand Down

0 comments on commit fc0c456

Please sign in to comment.