Update urllib3, fixes #647 (#648)

* Bump urllib3, fixes #647

* FAQ update
This commit is contained in:
Stéphane Bruckert 2021-02-28 14:53:02 +01:00 committed by GitHub
parent e35f6ec5ad
commit be399fd089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

View File

@ -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

4
FAQ.md
View File

@ -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:

View File

@ -18,7 +18,7 @@ extra_reqs = {
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",
@ -28,6 +28,7 @@ setup(
install_requires=[
'requests>=2.25.0',
'six>=1.15.0',
'urllib3>=1.26.0'
],
tests_require=test_reqs,
extras_require=extra_reqs,