Fix power sequencer test failures

This commit is contained in:
Brecht Van Lommel 2019-09-08 13:55:01 +02:00
parent cf9fde2568
commit 6f1ad705e1
5 changed files with 10 additions and 10 deletions

View File

@ -28,7 +28,7 @@ def get_operator_classes():
classes = []
print(__name__)
for path in module_paths:
module = importlib.import_module(path, package="blender_power_sequencer.operators")
module = importlib.import_module(path, package="power_sequencer.operators")
operator_names = [entry for entry in dir(module) if entry.startswith("POWER_SEQUENCER_OT")]
classes.extend([getattr(module, name) for name in operator_names])
return classes

View File

@ -16,10 +16,6 @@
#
import numpy as np
from scipy.signal import hamming, lfilter
from scipy.fftpack import fft
from scipy.fftpack.realtransforms import dct
from .trfbank import trfbank
from .segment_axis import segment_axis
@ -56,6 +52,10 @@ def mfcc(input, nwin=256, nfft=512, fs=16000, nceps=13):
spoken sentences", IEEE Trans. Acoustics. Speech, Signal Proc.
ASSP-28 (4): 357-366, August 1980."""
from scipy.signal import hamming, lfilter
from scipy.fftpack import fft
from scipy.fftpack.realtransforms import dct
# MFCC parameters: taken from auditory toolbox
over = nwin - 160
# Pre-emphasis factor (to take into account the -6dB/octave rolloff of the

View File

@ -14,8 +14,6 @@
# You should have received a copy of the GNU General Public License along with Power Sequencer. If
# not, see <https://www.gnu.org/licenses/>.
#
from setuptools import setup
def readme():
with open("README.md") as f:
@ -23,6 +21,8 @@ def readme():
if __name__ == "__main__":
from setuptools import setup
setup(
name="bpsproxy",
version="0.2.0",

View File

@ -14,8 +14,6 @@
# You should have received a copy of the GNU General Public License along with Power Sequencer. If
# not, see <https://www.gnu.org/licenses/>.
#
from setuptools import setup
def readme():
with open("README.rst") as f:
@ -23,6 +21,8 @@ def readme():
if __name__ == "__main__":
from setuptools import setup
setup(
name="bpsrender",
version="0.1.40.post1",

View File

@ -27,7 +27,7 @@ def get_tool_classes():
module_paths = ["." + os.path.splitext(f)[0] for f in module_files]
classes = []
for path in module_paths:
module = importlib.import_module(path, package="blender_power_sequencer.tools")
module = importlib.import_module(path, package="power_sequencer.tools")
tool_names = [entry for entry in dir(module) if entry.startswith("POWER_SEQUENCER_TOOL")]
classes.extend([getattr(module, name) for name in tool_names])
return classes