forked from CPJKU/madmom
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build error - packaging is a subdependency of mido, and it was er…
…roring out because versions of mido specify which versions of packaging they want to use. Fix build warning - The recursive-include and recursive-exclude patterns don't use a trailing slash.
- Loading branch information
Showing
2 changed files
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
prune docs | ||
prune tests | ||
include CHANGES.rst | ||
recursive-include madmom/ *.pyx | ||
recursive-exclude madmom/ *.c | ||
recursive-include madmom *.pyx | ||
recursive-exclude madmom *.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ cython>=0.25 | |
mido>=1.2.6 | ||
numpy>=1.13.4 | ||
scipy>=0.16 | ||
packaging>=21.3 | ||
torch | ||
torchvision | ||
torchaudio | ||
|