nicfit / eyeD3

eyeD3 is a Python module and command line program for processing ID3 tags. Information about mp3 files (i.e bit rate, sample frequency, play time, etc.) is also provided. The formats supported are ID3v1 (1.0/1.1) and ID3v2 (2.3/2.4).
http://eyed3.nicfit.net/
GNU General Public License v3.0
532 stars 58 forks source link

Fix dependency on `coverage` to be conditional to `test` extra #606

Closed mgorny closed 6 months ago

mgorny commented 10 months ago

Fix the Poetry dependency specification to include coverage in the test extra. Otherwise, optional = true is ignored and an unconditional dependency is created. Furthermore, using optional without an extra is considered incorrect and may cause Poetry to error out in the future, cf.: https://github.com/python-poetry/poetry/issues/2357

mgorny commented 6 months ago

Thanks!