Skip to content

Commit

Permalink
Merge pull request #328 from kan-bayashi/update_ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kan-bayashi authored Feb 10, 2022
2 parents 88b94fa + b92f5da commit 5bef5a0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
python-version: [3.6]
# 1.6 is failed on cpu: https://github.com/kan-bayashi/ParallelWaveGAN/issues/198
pytorch-version: [1.4, 1.5.1, 1.7.1, 1.8.1, 1.9]
pytorch-version: [1.4, 1.5.1, 1.7.1, 1.8.1, 1.9, 1.10.2]
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
max-parallel: 10
matrix:
python-version: [3.7]
pytorch-version: [1.9]
pytorch-version: [1.10.2]
config:
- "parallel_wavegan.v1.debug.yaml"
- "melgan.v1.debug.yaml"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,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, and 1.9.
All of the codes are tested on Pytorch 1.4, 1.5.1, 1.7.1, 1.8.1, 1.9 and 10.2.

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

Expand Down Expand Up @@ -444,7 +444,7 @@ $ parallel-wavegan-decode \

## Notes

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

## References

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.3"
__version__ = "0.5.4"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

requirements = {
"install": [
"torch>=1.0.1",
"torch>=1.4",
"setuptools>=38.5.1",
"librosa>=0.8.0",
"soundfile>=0.10.2",
Expand Down Expand Up @@ -69,7 +69,7 @@
dirname = os.path.dirname(__file__)
setup(
name="parallel_wavegan",
version="0.5.3",
version="0.5.4",
url="http://github.com/kan-bayashi/ParallelWaveGAN",
author="Tomoki Hayashi",
author_email="hayashi.tomoki@g.sp.m.is.nagoya-u.ac.jp",
Expand Down

0 comments on commit 5bef5a0

Please sign in to comment.