Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency cleanup #355

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,12 @@
# NB: keep this in sync with vis/requirements.txt and vis/optional_requirements.txt
# NB2: I left out the optional requirements and mock, since they aren't *required*
'music21 (>=2.0.3, <2.1)',
'pandas (>=0.14.1, <0.16)',
'pandas (>=0.14.1, <0.17)',
],
install_requires = [
'music21 >= 2.0.3, <2.1',
'pandas >=0.14.1, <0.16',
'pandas >=0.14.1, <0.17',
],
dependency_links = [
# music21 2.0.3 has not been released to PyPl yet (2015-05-20).
# This particular commit fixes an issue with exporting fermatas on rests.
"https://github.com/cuthbertLab/music21/archive/3fb33def708602485eadc1a655ede2fe22acb766.zip#egg=music21-2.0.3"
],
packages = [
'vis',
'vis.models',
Expand Down
4 changes: 2 additions & 2 deletions vis/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# These packages are required for vis.
# Certain functionality will be missing; see optional_requirements.txt.
music21>=2.0.3,<2.1
pandas>=0.14.1,<0.16
pandas>=0.14.1,<0.17
mock>=1.0.1
coverage
python-coveralls
six
six