mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-06-19 01:03:53 +00:00
* Bump urllib3, fixes #647 * FAQ update
This commit is contained in:
parent
e35f6ec5ad
commit
be399fd089
@ -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
|
// 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
|
## [2.17.0] - 2021-02-28
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
4
FAQ.md
4
FAQ.md
@ -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)
|
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
|
### Incorrect user
|
||||||
|
|
||||||
Error:
|
Error:
|
||||||
|
|||||||
3
setup.py
3
setup.py
@ -18,7 +18,7 @@ extra_reqs = {
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='spotipy',
|
name='spotipy',
|
||||||
version='2.17.0',
|
version='2.17.1',
|
||||||
description='A light weight Python library for the Spotify Web API',
|
description='A light weight Python library for the Spotify Web API',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
@ -28,6 +28,7 @@ setup(
|
|||||||
install_requires=[
|
install_requires=[
|
||||||
'requests>=2.25.0',
|
'requests>=2.25.0',
|
||||||
'six>=1.15.0',
|
'six>=1.15.0',
|
||||||
|
'urllib3>=1.26.0'
|
||||||
],
|
],
|
||||||
tests_require=test_reqs,
|
tests_require=test_reqs,
|
||||||
extras_require=extra_reqs,
|
extras_require=extra_reqs,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user