Skip to content

Commit

Permalink
pin dependency versions in setup.py
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 461062953
  • Loading branch information
iansimon authored and Magenta Team committed Jul 14, 2022
1 parent 36aed73 commit e0f0f21
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,22 @@
},
scripts=[],
install_requires=[
'absl-py',
'ddsp',
'flax',
'gin-config',
'immutabledict',
'librosa',
'mir_eval',
'note_seq',
'numpy',
'pretty_midi',
'scikit-learn',
'scipy',
'seqio',
't5',
'tensorflow',
'tensorflow-datasets',
'absl-py == 1.1.0',
'ddsp == 3.4.4',
'flax == 0.5.2',
'gin-config == 0.5.0',
'immutabledict == 2.2.1',
'librosa == 0.9.2',
'mir_eval == 0.7',
'note_seq == 0.0.3',
'numpy == 1.21.6',
'pretty_midi == 0.2.9',
'scikit-learn == 1.0.2',
'scipy == 1.7.3',
'seqio == 0.0.8',
't5 == 0.9.3',
'tensorflow == 2.9.1',
'tensorflow-datasets == 4.6.0',
],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit e0f0f21

Please sign in to comment.