Don't require mock for install (#419)

Fixes #418
This commit is contained in:
Peter Bengtsson 2020-01-13 09:23:51 -05:00 committed by Stéphane Bruckert
parent cc572364cb
commit 4ec320774d
2 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Fixed invalid calls to logging warn method - Fixed invalid calls to logging warn method
- `mock` no longer needed for install. Only used in `tox`.
## [2.6.0] - 2020-01-12 ## [2.6.0] - 2020-01-12

View File

@ -11,7 +11,6 @@ setup(
author_email="paul@echonest.com", author_email="paul@echonest.com",
url='http://spotipy.readthedocs.org/', url='http://spotipy.readthedocs.org/',
install_requires=[ install_requires=[
'mock>=2.0.0',
'requests>=2.3.0', 'requests>=2.3.0',
'six>=1.10.0', 'six>=1.10.0',
], ],