Skip to content

Commit

Permalink
Release v0.3.1rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
mpariente committed Aug 19, 2020
1 parent 1956d35 commit bb3c374
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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, DPTNet, LSTMTasNet

project_root = str(pathlib.Path(__file__).expanduser().absolute().parent.parent)
__version__ = "0.3.1rc1"
__version__ = "0.3.1rc2"


def show_available_models():
Expand Down
2 changes: 1 addition & 1 deletion 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.1rc1"
asteroid_version = "0.3.1rc2"

with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
Expand Down
4 changes: 2 additions & 2 deletions tests/utils/utils_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import argparse
import collections
from collections.abc import MutableMapping
import torch
from torch.testing import assert_allclose
import pytest
Expand Down Expand Up @@ -79,7 +79,7 @@ def test_flatten_dict():
)
flat_dic = utils.flatten_dict(to_test)
for k, v in flat_dic.items():
assert not isinstance(v, collections.MutableMapping)
assert not isinstance(v, MutableMapping)


def test_average_array_in_dic():
Expand Down

0 comments on commit bb3c374

Please sign in to comment.