Skip to content

Commit e2f3af4

Browse files
jesseengelMagenta Team
authored andcommitted
Fix dependencies. There was a breaking change so need to pin to hmmlearn<=0.2.7. Fixes slow install from #460. Removes strict version (== to <= >=). Also just add a "downloads" badge for fun.
PiperOrigin-RevId: 478651890
1 parent 9866d3a commit e2f3af4

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
# DDSP: Differentiable Digital Signal Processing
66
[![Build Status](https://github.com/magenta/ddsp/workflows/build/badge.svg)](https://github.com/magenta/ddsp/actions?query=workflow%3Abuild)
7+
[![Downloads](https://static.pepy.tech/personalized-badge/crepe?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)](https://pepy.tech/project/crepe)
78

89
[**Demos**](./ddsp/colab/demos)
910
| [**Tutorials**](./ddsp/colab/tutorials)

ddsp/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
pulling in all the dependencies in __init__.py.
1919
"""
2020

21-
__version__ = '3.4.4'
21+
__version__ = '3.5.0'

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,22 @@
3939
install_requires=[
4040
'absl-py',
4141
'cloudml-hypertune',
42-
'crepe>=0.0.11',
42+
'crepe<=0.0.12',
4343
'future',
4444
'gin-config>=0.3.0',
4545
'google-cloud-storage',
46+
'hmmlearn<=0.2.7',
4647
'librosa',
4748
'pydub',
48-
'protobuf==3.20.*', # temporary fix for proto dependency bug
49+
'protobuf<=3.20.*', # temporary fix for proto dependency bug
4950
'mir_eval',
50-
'note_seq',
51-
'numba < 0.50', # temporary fix for librosa import
51+
'note_seq<0.0.4',
5252
'numpy',
5353
'scipy',
5454
'six',
5555
'tensorflow',
5656
'tensorflow-addons',
57-
'tensorflowjs',
57+
'tensorflowjs<3.19',
5858
'tensorflow-probability',
5959
'tensorflow-datasets',
6060
'tflite_support'

0 commit comments

Comments
 (0)