8000 Remove python2.5 support from texmanager.py by NelleV · Pull Request #1560 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Remove python2.5 support from texmanager.py #1560

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

Merged
merged 1 commit into from
Dec 5, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove python2.5 support from texmanager.py
closes #1552
  • Loading branch information
NelleV committed Dec 4, 2012
commit 7328293d9388d0f4c3ba717e6ceab6b1e88379cc
5 changes: 1 addition & 4 deletions lib/matplotlib/texmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,7 @@
import sys
from subprocess import Popen, PIPE, STDOUT

try:
from hashlib import md5
except ImportError:
from md5 import md5 # Deprecated in 2.5
from hashlib import md5

import distutils.version
import numpy as np
Expand Down
0