ponnhide/patchworklib

StrictVersion Fails for matplotlib 3.9.1.post1

Closed this issue · 1 comments

There is a check in the code that the version of matplotlib is great than 3.7 for a particular feature here in the code. This is currently completed with a StrictVersion check. This check fails with the most recent matplotlib release yesterday (3.9.1.post1). Would it be acceptable to update to from packaging.version import Version instead? Happy to submit a MR is so.

Thank you for pointing it out.
Yes, it would be acceptable to update the version check to use Version from packaging.version instead of StrictVersion.
Please submit MR and I'll review it promptly.