Skip to content

Commit

Permalink
FIX: added 'requests' python package req.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbannon committed Oct 4, 2016
1 parent b9132fc commit c76ed75
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@
keywords = ['music', 'music analysis', 'music theory', 'counterpoint'],
requires = [
'music21 (== 2.1.2)',
'pandas (>= 0.14.1, < 0.17)'
'pandas (>= 0.14.1, < 0.17)',
'requests (== 2.11.1)'
],
install_requires = [
'music21 == 2.1.2',
'pandas >= 0.14.1, < 0.17'
'pandas >= 0.14.1, < 0.17',
'requests == 2.11.1'
],
packages = [
'vis',
Expand Down
3 changes: 2 additions & 1 deletion vis/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# These packages are required for vis.
# Certain functionality will be missing; see optional_requirements.txt.
music21==2.1.2
pandas>=0.14.1,<0.17
pandas>=0.14.1,<0.17
requests==2.11.1
3 changes: 2 additions & 1 deletion vis/travis_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
# Don't use this for a requirements file. Rather, use 'requirements.txt' and then 'optional_requirements.txt' (if desired).
music21==2.1.2
pandas>=0.14.1,<0.17
requests==2.11.1

# For plotting.
scipy==0.16.0

# For testing, coverage, stuff like that.
mock==1.0.1
coverage
python-coveralls
python-coveralls

0 comments on commit c76ed75

Please sign in to comment.