class documentation

class NumpyVersion:

View In Hierarchy

Parse and compare numpy version strings.

NumPy has the following versioning scheme (numbers given are examples; they can be > 9 in principle):

  • Released version: '1.8.0', '1.8.1', etc.
  • Alpha: '1.8.0a1', '1.8.0a2', etc.
  • Beta: '1.8.0b1', '1.8.0b2', etc.
  • Release candidates: '1.8.0rc1', '1.8.0rc2', etc.
  • Development versions: '1.8.0.dev-f1234afa' (git commit hash appended)
  • Development versions after a1: '1.8.0a1.dev-f1234afa',
    '1.8.0b2.dev-f1234afa', '1.8.1rc1.dev-f1234afa', etc.
  • Development versions (no git hash available): '1.8.0.dev-Unknown'

Comparing needs to be done against a valid version string or other NumpyVersion instance. Note that all development versions of the same (pre-)release compare equal.

New in version 1.9.0.

Parameters

vstring : str
NumPy version string (np.__version__).

Examples

>>> from numpy.lib import NumpyVersion
>>> if NumpyVersion(np.__version__) < '1.7.0':
...     print('skip')
>>> # skip
>>> NumpyVersion('1.7')  # raises ValueError, add ".0"
Traceback (most recent call last):
    ...
ValueError: Not a valid numpy version string
Method __eq__ Undocumented
Method __ge__ Undocumented
Method __gt__ Undocumented
Method __init__ Undocumented
Method __le__ Undocumented
Method __lt__ Undocumented
Method __ne__ Undocumented
Method __repr__ Undocumented
Method ​_compare Undocumented
Method ​_compare​_pre​_release Compare alpha/beta/rc/final.
Method ​_compare​_version Compare major.minor.bugfix
Instance Variable bugfix Undocumented
Instance Variable is​_devversion Undocumented
Instance Variable major Undocumented
Instance Variable minor Undocumented
Instance Variable pre​_release Undocumented
Instance Variable version Undocumented
Instance Variable vstring Undocumented
def __eq__(self, other):

Undocumented

def __ge__(self, other):

Undocumented

def __gt__(self, other):

Undocumented

def __init__(self, vstring):

Undocumented

def __le__(self, other):

Undocumented

def __lt__(self, other):

Undocumented

def __ne__(self, other):

Undocumented

def __repr__(self):

Undocumented

def _compare(self, other):

Undocumented

def _compare_pre_release(self, other):
Compare alpha/beta/rc/final.
def _compare_version(self, other):
Compare major.minor.bugfix
bugfix =

Undocumented

is_devversion =

Undocumented

major =

Undocumented

minor =

Undocumented

pre_release: str =

Undocumented

version =

Undocumented

vstring =

Undocumented