Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
shuttle1987 committed Aug 31, 2019
2 parents 9c31156 + 4ec2256 commit 29b3223
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Persephone v0.3.2 (beta version)
Persephone v0.4.0 (beta version)
================================

Persephone (/pərˈsɛfəni/) is an automatic phoneme transcription tool.
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Bug where `untranscribed_prefixes` in corpus was taking an intersection of two sets instead of a union.
- Splitting of test, train and validation data sets will no longer produce empty sets. If no possible split can be made it will report the error via raising an exception.
- Empty wave files no longer crash on attempted feature extraction and are now skipped instead.
- Update nltk dependency to resolve possible security issue

## [0.3.2]

Expand Down
2 changes: 1 addition & 1 deletion persephone/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.2"
__version__ = "0.4.0"

import sys
import logging
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='persephone',
version='0.3.3',
version='0.4.0',
description='A tool for developing automatic phoneme transcription models',
long_description=open('README.rst', encoding="utf8").read(),
url='https://github.com/oadams/persephone',
Expand All @@ -19,7 +19,7 @@
keywords='speech-recognition machine-learning acoustic-models artificial-intelligence neural-networks',
install_requires=[
'GitPython==2.1.8',
'nltk==3.2.5',
'nltk==3.4.5',
'numpy>=1.14.5,<2',
'python-speech-features==0.6',
'scipy>=1.1.0,<2',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=py35
envlist=py35,py36
[testenv]
deps=
-r{toxinidir}/test_requirements.txt
Expand Down

0 comments on commit 29b3223

Please sign in to comment.