You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem raised in issue #43 and that you fixed with PR #44 recently caused me problems. I encountered this error:
TypeError: print_png() got an unexpected keyword argument 'facecolor'
where matplotlib 3.7.1 was passing "facecolor" in as an kwargument and then complaining about it when itermplot gave it right back, which made me scratch my head a little, but I see the fix in PR #44 is simply to stop pasing kwargs down. It turns out that if you do not specify a version of itermplot to pypi, it will install what it seems to think the the most recent version, version 0.331. Indeed, if you ask pypi for the history of itermplot, it says the most recent version is 0.331 uploaded in June of 2018.
However, if you say "I want version 0.5," pypi will give it to you.
Since 0.331 is not compatible with the more recent versions of matplotlib, could you bump the release version on pypi / note the version incompatibility between 0.331 and matplotlib > 3.3 (when the API change took effect)?
The text was updated successfully, but these errors were encountered:
The problem raised in issue #43 and that you fixed with PR #44 recently caused me problems. I encountered this error:
where matplotlib 3.7.1 was passing "facecolor" in as an kwargument and then complaining about it when itermplot gave it right back, which made me scratch my head a little, but I see the fix in PR #44 is simply to stop pasing kwargs down. It turns out that if you do not specify a version of itermplot to pypi, it will install what it seems to think the the most recent version, version 0.331. Indeed, if you ask pypi for the history of itermplot, it says the most recent version is 0.331 uploaded in June of 2018.
https://pypi.org/project/itermplot/#history
However, if you say "I want version 0.5," pypi will give it to you.
Since 0.331 is not compatible with the more recent versions of matplotlib, could you bump the release version on pypi / note the version incompatibility between 0.331 and matplotlib > 3.3 (when the API change took effect)?
The text was updated successfully, but these errors were encountered: