Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ You can install dependencies these by `pip install -r requirements.txt`


## Acknowledgement
Thank all contributors ([tats-u](https://github.com/tats-u), [wuaalb](https://github.com/wuaalb), [r9y9](https://github.com/r9y9), [rikrd](https://github.com/rikrd), [kudan2510](https://github.com/kundan2510)) for making this repo better and [sotelo](https://github.com/sotelo) whose [world.py](https://github.com/sotelo/world.py) inspired this repo.<br/>
Thank all contributors ([tats-u](https://github.com/tats-u), [wuaalb](https://github.com/wuaalb), [r9y9](https://github.com/r9y9), [rikrd](https://github.com/rikrd), [kudan2510](https://github.com/kundan2510), [sabonerune](https://github.com/sabonerune)) for making this repo better and [sotelo](https://github.com/sotelo) whose [world.py](https://github.com/sotelo/world.py) inspired this repo.<br/>
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ build_script:
- pip install -e .

test_script:
- pip install soundfile matplotlib
- ps: |
$ErrorActionPreference = "Stop"
Set-Location "$env:APPVEYOR_BUILD_FOLDER\demo"
Expand Down
12 changes: 7 additions & 5 deletions pyworld/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@

For more information, see https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder
"""

from __future__ import division, print_function, absolute_import

import pkg_resources

__version__ = pkg_resources.get_distribution('pyworld').version
import sys
if sys.version_info >= (3, 8):
from importlib.metadata import version
__version__ = version('pyworld')
else:
import pkg_resources
__version__ = pkg_resources.get_distribution('pyworld').version

from .pyworld import *
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
numpy
matplotlib
argparse; python_version<"3.5"
soundfile
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from setuptools.command.build_ext import build_ext


_VERSION = '0.3.4'
_VERSION = '0.3.5'


world_src_top = join("lib", "World", "src")
Expand Down