-
Notifications
You must be signed in to change notification settings - Fork 50
fix: change Subplot to Axes #184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Hi @siemdejong , you will need to specify a more detailed version number for matplotlib for it to run. |
Hey @Jacobluke-, thanks for considering this PR and reviewing. Does 3164aee satisfy your request? |
Hi @siemdejong, our Python workflow test the package with the minimum supported version of Python (3.8). And matplotlib 3.8 only support Python >= 3.9 hence the workflow didn't run through. You can install pytest-mpl plugin and run |
Python 3.8 will reach end of life this October [1]. Are you planning to keep python 3.8 support after October? |
Thank you for your information, we will discuss about it in the team and likely to push commits to your PR to address this issue. |
…uests/siemdejong/issue-183 # Conflicts: # dabest/_modidx.py # dabest/misc_tools.py # dabest/plot_tools.py # dabest/plotter.py # nbs/API/misc_tools.ipynb # nbs/API/plot_tools.ipynb # nbs/API/plotter.ipynb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks in order! Happy to continue merging
This PR proposes to change all
matplotlib.axes.Subplot
typehints andisinstance
checks withmatplotlib.axes.Axes
to support newer matplotlib versions. This would enable users to e.g. distribute their packages using dabest with specific style files.Fixes #183