Skip to content

Commit e92d34e

Browse files
Release: update setup.py etc. for 3.0.2 release.
1 parent 0ffe5cd commit e92d34e

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

README.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ Software Dependencies
2020

2121
The VIS Framework uses many software libraries to help with analysis. These are required dependencies:
2222

23-
- [Python 2.7](https://www.python.org)
23+
- [Python 3.5](https://www.python.org)
2424
- [music21](http://web.mit.edu/music21/)
2525
- [pandas](http://pandas.pydata.org)
26+
- [multi_key_dict](https://pypi.python.org/pypi/multi_key_dict)
27+
- [requests](https://pypi.python.org/pypi/requests/)
2628

2729
These are recommended dependencies:
2830

VERSION_HISTORY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ VERSION HISTORY
33
This file records version-to-version changes in the VIS Framework. The most recent versions are at
44
the top of the file.
55

6+
* 3.0.2:
7+
-Update indexer documentation examples for VIS 3 syntax.
8+
-Re-enable tests that check connectivity requirements but don't actually access ELVIS Database.
9+
-Clean up the way some error messages in indexed_piece print.
10+
-Small bug fix in CadenceIndexer.
11+
612
* 3.0.1:
713
-Fixed 'requests' library requirement.
814
-Disabled test cases that depend on external DB.

vis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
_MAJOR = 3
22
_MINOR = 0
3-
_PATCH = 1
3+
_PATCH = 2
44
__version__ = '{}.{}.{}'.format(_MAJOR, _MINOR, _PATCH)

0 commit comments

Comments
 (0)