Skip to content

Commit

Permalink
Release v0.3.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
mpariente committed Jun 16, 2020
1 parent 388322d commit 2629378
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion asteroid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .models import ConvTasNet, DPRNNTasNet

project_root = str(pathlib.Path(__file__).expanduser().absolute().parent.parent)
__version__ = '0.3.0rc0'
__version__ = '0.3.0rc1'


def show_available_models():
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ SoundFile>=0.10.2
torch>=1.3.0
pytorch-lightning>=0.7.5
pb_bss_eval>=0.0.2
asranger>=0.0.5
torch_stoi>=0.0.1
torch_optimizer>=0.0.1a12
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

asteroid_version = "0.3.0rc0"
asteroid_version = "0.3.0rc1"

with open("README.md", encoding='utf-8') as fh:
long_description = fh.read()
Expand All @@ -16,10 +16,11 @@
long_description_content_type="text/markdown",
license='MIT',
python_requires='>=3.6',
install_requires=['numpy',
install_requires=['pyyaml',
'numpy',
'scipy',
'pandas',
'soundfile',
'pyyaml',
'torch',
'pytorch-lightning',
'torch_optimizer',
Expand Down
2 changes: 1 addition & 1 deletion tests/models/publish_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import shutil

from asteroid.models import save_publishable, upload_publishable, ConvTasNet
from asteroid.data import WhamDataset
from asteroid.data.wham_dataset import WhamDataset


def populate_wham_dir(path):
Expand Down

0 comments on commit 2629378

Please sign in to comment.