Skip to content

Commit

Permalink
🔧 use >= instead of == in setup.py (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlenain committed Jun 2, 2020
1 parent 39d19a2 commit 68f5733
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@
],
download_url="https://github.com/novoic/surfboard/archive/v0.1.1.tar.gz",
install_requires=[
"librosa==0.7.2",
"pysptk==0.1.18",
"PeakUtils==1.3.3",
"librosa>=0.7.2",
"numba==0.48.0", # Needed until Librosa deploys fix to mute warnings.
"pysptk>=0.1.18",
"PeakUtils>=1.3.3",
"pyloudnorm==0.1.0",
"pandas==1.0.1",
"tqdm==4.42.1",
"pyyaml==5.3",
"Cython==0.29.15",
"pytest==5.4.1",
"SoundFile==0.10.3.post1",
"pandas>=1.0.1",
"tqdm>=4.42.1",
"pyyaml>=5.3",
"Cython>=0.29.15",
"pytest>=5.4.1",
"SoundFile>=0.10.3.post1",
],
scripts=['bin/surfboard'],
zip_safe=False,
Expand Down

0 comments on commit 68f5733

Please sign in to comment.