Skip to content

Commit d500e3b

Browse files
authored
Merge pull request #363 from kan-bayashi/version_update
2 parents d5d4792 + 1156672 commit d500e3b

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ You can try the real-time end-to-end text-to-speech and singing voice synthesis
5353

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

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

6464
Different cuda version should be working but not explicitly tested.
65-
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.
65+
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.
6666

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

parallel_wavegan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22

3-
__version__ = "0.5.4"
3+
__version__ = "0.5.5"

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
from setuptools import find_packages
1212
from setuptools import setup
1313

14-
if LooseVersion(sys.version) < LooseVersion("3.6"):
14+
if LooseVersion(sys.version) < LooseVersion("3.7"):
1515
raise RuntimeError(
16-
"parallel-wavegan requires Python>=3.6, "
16+
"parallel-wavegan requires Python>=3.7, "
1717
"but your Python is {}".format(sys.version)
1818
)
1919
if LooseVersion(pip.__version__) < LooseVersion("19"):
@@ -69,7 +69,7 @@
6969
dirname = os.path.dirname(__file__)
7070
setup(
7171
name="parallel_wavegan",
72-
version="0.5.4",
72+
version="0.5.5",
7373
url="http://github.com/kan-bayashi/ParallelWaveGAN",
7474
author="Tomoki Hayashi",
7575
author_email="[email protected]",
@@ -84,7 +84,6 @@
8484
extras_require=extras_require,
8585
entry_points=entry_points,
8686
classifiers=[
87-
"Programming Language :: Python :: 3.6",
8887
"Programming Language :: Python :: 3.7",
8988
"Programming Language :: Python :: 3.8",
9089
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)