Skip to content

Commit

Permalink
Merge pull request #363 from kan-bayashi/version_update
Browse files Browse the repository at this point in the history
  • Loading branch information
kan-bayashi authored May 17, 2022
2 parents d5d4792 + 1156672 commit d500e3b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ You can try the real-time end-to-end text-to-speech and singing voice synthesis

This repository is tested on Ubuntu 20.04 with a GPU Titan V.

- Python 3.6+
- Python 3.7+
- Cuda 10.0+
- CuDNN 7+
- NCCL 2+ (for distributed multi-gpu training)
Expand All @@ -62,7 +62,7 @@ This repository is tested on Ubuntu 20.04 with a GPU Titan V.
- sox (you can install via `sudo apt install sox` in ubuntu)

Different cuda version should be working but not explicitly tested.
All of the codes are tested on Pytorch 1.4, 1.5.1, 1.7.1, 1.8.1, 1.9, 10.2 and 11.0.
All of the codes are tested on Pytorch 1.4, 1.5.1, 1.7.1, 1.8.1, 1.9, 1.10.2, and 1.11.0.

Pytorch 1.6 works but there are some issues in cpu mode (See #198).

Expand Down
2 changes: 1 addition & 1 deletion parallel_wavegan/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "0.5.4"
__version__ = "0.5.5"
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
from setuptools import find_packages
from setuptools import setup

if LooseVersion(sys.version) < LooseVersion("3.6"):
if LooseVersion(sys.version) < LooseVersion("3.7"):
raise RuntimeError(
"parallel-wavegan requires Python>=3.6, "
"parallel-wavegan requires Python>=3.7, "
"but your Python is {}".format(sys.version)
)
if LooseVersion(pip.__version__) < LooseVersion("19"):
Expand Down Expand Up @@ -69,7 +69,7 @@
dirname = os.path.dirname(__file__)
setup(
name="parallel_wavegan",
version="0.5.4",
version="0.5.5",
url="http://github.com/kan-bayashi/ParallelWaveGAN",
author="Tomoki Hayashi",
author_email="[email protected]",
Expand All @@ -84,7 +84,6 @@
extras_require=extras_require,
entry_points=entry_points,
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit d500e3b

Please sign in to comment.