diff --git a/README.txt b/README.txt index e6bac86e..dc7921aa 100755 --- a/README.txt +++ b/README.txt @@ -20,9 +20,11 @@ Software Dependencies The VIS Framework uses many software libraries to help with analysis. These are required dependencies: -- [Python 2.7](https://www.python.org) +- [Python 3.5](https://www.python.org) - [music21](http://web.mit.edu/music21/) - [pandas](http://pandas.pydata.org) +- [multi_key_dict](https://pypi.python.org/pypi/multi_key_dict) +- [requests](https://pypi.python.org/pypi/requests/) These are recommended dependencies: diff --git a/VERSION_HISTORY.md b/VERSION_HISTORY.md index 53c90935..4477f537 100755 --- a/VERSION_HISTORY.md +++ b/VERSION_HISTORY.md @@ -3,6 +3,12 @@ VERSION HISTORY This file records version-to-version changes in the VIS Framework. The most recent versions are at the top of the file. +* 3.0.2: + -Update indexer documentation examples for VIS 3 syntax. + -Re-enable tests that check connectivity requirements but don't actually access ELVIS Database. + -Clean up the way some error messages in indexed_piece print. + -Small bug fix in CadenceIndexer. + * 3.0.1: -Fixed 'requests' library requirement. -Disabled test cases that depend on external DB. diff --git a/vis/__init__.py b/vis/__init__.py index 249fb74d..20d8c6cf 100755 --- a/vis/__init__.py +++ b/vis/__init__.py @@ -1,4 +1,4 @@ _MAJOR = 3 _MINOR = 0 -_PATCH = 1 +_PATCH = 2 __version__ = '{}.{}.{}'.format(_MAJOR, _MINOR, _PATCH)