Skip to content

Commit 5bef5a0

Browse files
authored
Merge pull request #328 from kan-bayashi/update_ci
2 parents 88b94fa + b92f5da commit 5bef5a0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
python-version: [3.6]
2020
# 1.6 is failed on cpu: https://github.com/kan-bayashi/ParallelWaveGAN/issues/198
21-
pytorch-version: [1.4, 1.5.1, 1.7.1, 1.8.1, 1.9]
21+
pytorch-version: [1.4, 1.5.1, 1.7.1, 1.8.1, 1.9, 1.10.2]
2222
steps:
2323
- uses: actions/checkout@master
2424
- uses: actions/setup-python@v2
@@ -60,7 +60,7 @@ jobs:
6060
max-parallel: 10
6161
matrix:
6262
python-version: [3.7]
63-
pytorch-version: [1.9]
63+
pytorch-version: [1.10.2]
6464
config:
6565
- "parallel_wavegan.v1.debug.yaml"
6666
- "melgan.v1.debug.yaml"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ This repository is tested on Ubuntu 20.04 with a GPU Titan V.
6060
- sox (you can install via `sudo apt install sox` in ubuntu)
6161

6262
Different cuda version should be working but not explicitly tested.
63-
All of the codes are tested on Pytorch 1.4, 1.5.1, 1.7.1, 1.8.1, and 1.9.
63+
All of the codes are tested on Pytorch 1.4, 1.5.1, 1.7.1, 1.8.1, 1.9 and 10.2.
6464

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

@@ -444,7 +444,7 @@ $ parallel-wavegan-decode \
444444

445445
## Notes
446446

447-
The terms of use follow that of each corpus. Please carefully check by yourself.
447+
The terms of use of the pretrained model follow that of each corpus used for the training. Please carefully check by yourself.
448448

449449
## References
450450

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.3"
3+
__version__ = "0.5.4"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
requirements = {
2626
"install": [
27-
"torch>=1.0.1",
27+
"torch>=1.4",
2828
"setuptools>=38.5.1",
2929
"librosa>=0.8.0",
3030
"soundfile>=0.10.2",
@@ -69,7 +69,7 @@
6969
dirname = os.path.dirname(__file__)
7070
setup(
7171
name="parallel_wavegan",
72-
version="0.5.3",
72+
version="0.5.4",
7373
url="http://github.com/kan-bayashi/ParallelWaveGAN",
7474
author="Tomoki Hayashi",
7575
author_email="[email protected]",

0 commit comments

Comments
 (0)