mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 06:21:00 +00:00
Import pkg_resources after activating virtualenv
This commit is contained in:
parent
1554c9c6e5
commit
9daa774b5b
@ -2,7 +2,7 @@
|
|||||||
# Build the documentation.
|
# Build the documentation.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import os, pkg_resources, shutil, tempfile
|
import os, shutil, tempfile
|
||||||
from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE
|
from subprocess import check_call, check_output, CalledProcessError, Popen, PIPE
|
||||||
from distutils.version import LooseVersion
|
from distutils.version import LooseVersion
|
||||||
|
|
||||||
@ -27,6 +27,7 @@ def build_docs():
|
|||||||
execfile(activate_this_file, dict(__file__=activate_this_file))
|
execfile(activate_this_file, dict(__file__=activate_this_file))
|
||||||
# Upgrade pip because installation of sphinx with pip 1.1 available on Travis
|
# Upgrade pip because installation of sphinx with pip 1.1 available on Travis
|
||||||
# is broken (see #207) and it doesn't support the show command.
|
# is broken (see #207) and it doesn't support the show command.
|
||||||
|
import pkg_resources
|
||||||
pip_version = pkg_resources.get_distribution('pip').version
|
pip_version = pkg_resources.get_distribution('pip').version
|
||||||
print('pip version: ' + pip_version)
|
print('pip version: ' + pip_version)
|
||||||
if LooseVersion(pip_version) < LooseVersion('1.5.4'):
|
if LooseVersion(pip_version) < LooseVersion('1.5.4'):
|
||||||
|
Loading…
Reference in New Issue
Block a user