Skip to content

Commit

Permalink
Update urllib3, fixes #647 (#648)
Browse files Browse the repository at this point in the history
* Bump urllib3, fixes #647

* FAQ update
  • Loading branch information
stephanebruckert authored Feb 28, 2021
1 parent e35f6ec commit be399fd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

// Add your changes here and then delete this line

## [2.17.1] - 2021-02-28

### Fixed

- `allowed_methods` requires urllib3>=1.26.0

## [2.17.0] - 2021-02-28

### Changed
Expand Down
4 changes: 4 additions & 0 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ spotipy can only return fields documented on the Spotify web API https://develop

Check out [this example Flask app](examples/app.py)

### How can I store tokens in a database rather than on the filesystem?

See https://spotipy.readthedocs.io/en/latest/#customized-token-caching

### Incorrect user

Error:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='spotipy',
version='2.17.0',
version='2.17.1',
description='A light weight Python library for the Spotify Web API',
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -28,6 +28,7 @@
install_requires=[
'requests>=2.25.0',
'six>=1.15.0',
'urllib3>=1.26.0'
],
tests_require=test_reqs,
extras_require=extra_reqs,
Expand Down

0 comments on commit be399fd

Please sign in to comment.