Python pip.__version__() Examples
The following are 30
code examples of pip.__version__().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
pip
, or try the search function
.
Example #1
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #2
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #3
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #4
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #5
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #6
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #7
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #8
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #9
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #10
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #11
Source File: base.py From anybox.recipe.odoo with GNU Affero General Public License v3.0 | 6 votes |
def pip_version(): import pip # we don't use pip or setuptools APIs for that to avoid going # in a swath of instability. # TODO we could try and use the version class from runtime.session # (has the advantage over pkf_resources' of direct transparent # comparison to tuples), but that'd introduced logical deps problems # that I don't want to solve right now. pip_version = pip.__version__ # Naturally, pip has strictly conformed to PEP440, and does not use # version epochs, since at least v1.2. the oldest I could easily check # (we claim to support >= 1.4.1). # This equates all pre versions with the final one, and that's good # enough for current purposes: for suffix in ('a', 'b', 'rc', '.dev', '.post'): pip_version = pip_version.split(suffix)[0] return tuple(int(x) for x in pip_version.split('.'))
Example #12
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #13
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #14
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #15
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #16
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #17
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #18
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #19
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #20
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #21
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #22
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #23
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #24
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #25
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #26
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #27
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #28
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string
Example #29
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def check_pip_version(min_version='6.0.0'): """ Ensure that a minimum supported version of pip is installed. """ check_pip_is_installed() import pip if StrictVersion(pip.__version__) < StrictVersion(min_version): print("Upgrade pip, your version '{0}' " "is outdated. Minimum required version is '{1}':\n{2}".format(pip.__version__, min_version, GET_PIP)) sys.exit(1) return True
Example #30
Source File: dist_utils.py From st2 with Apache License 2.0 | 6 votes |
def get_version_string(init_file): """ Read __version__ string for an init file. """ with open(init_file, 'r') as fp: content = fp.read() version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M) if version_match: return version_match.group(1) raise RuntimeError('Unable to find version string in %s.' % (init_file)) # alias for get_version_string