-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Merge pull request #11533 from tacaswell/update_for_py37 #11817
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
MNT: updates for python 3.7 Conflicts: .travis.yml - mostly keep 2.2.x version, but add py37 section INSTALL.rst - kept v2.2.x wording lib/matplotlib/tests/test_figure.py - removed non-existent on 2.2.x test (feature tested is only on master)
Why is nothing easy.... |
This is a super filtered diff, but change in the 6th digit of a translation which are part of a letter. 23:26 $ diff -u result_images/test_axes/contour_colorbar-expected.svg result_images/test_axes/contour_colorbar.svg | grep -v url | grep -v clipPath | grep ^[+-]
--- result_images/test_axes/contour_colorbar-expected.svg 2018-08-06 23:12:14.668132987 -0400
+++ result_images/test_axes/contour_colorbar.svg 2018-08-06 23:12:14.668132987 -0400
- <g transform="translate(107.794688 401.918125)scale(0.12 -0.12)">
+ <g transform="translate(107.794687 401.918125)scale(0.12 -0.12)">
- <g transform="translate(152.434688 401.918125)scale(0.12 -0.12)">
+ <g transform="translate(152.434687 401.918125)scale(0.12 -0.12)">
Pushed the minimal change, lets see if that passes.... |
doc/devel/testing.rst
Outdated
@@ -264,10 +264,10 @@ Using tox | |||
`Tox <https://tox.readthedocs.io/en/latest/>`_ is a tool for running | |||
tests against | |||
multiple Python environments, including multiple versions of Python | |||
(e.g., 2.7, 3.4, 3.5) and even different Python implementations | |||
(e.g., 3.5, 3.6) and even different Python implementations |
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.
The 2.2.x
series still supports python 2, so I that maybe these bits should still have 2.7 in them.
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.
I looked at this when I did the backport, decided it was just prose to illustrate what 'multiple versions of python' meant and left it (because I was feeling lazy.....)
2e2f8db
to
291041b
Compare
ok, 2 approvals and CI passed, so self-merging. |
MNT: updates for python 3.7
Conflicts:
.travis.yml
- mostly keep 2.2.x version, but add py37 section
INSTALL.rst
- kept v2.2.x wording
lib/matplotlib/tests/test_figure.py
- removed non-existent on 2.2.x test (feature tested
is only on master)
Intend to self-merge when CI passes. 🤞