Version information¶
The version information in maicos.__version__ indicates the release of MAICoS using
semantic versioning.
In brief:
Given a version number MAJOR.MINOR.PATCH, we increment the
MAJOR version when we make incompatible API changes,
MINOR version when we add functionality in a backwards-compatible manner, and
PATCH version when we make backwards-compatible bug fixes.
However, as long as the MAJOR number is 0 (i.e. the API has not stabilized), even MINOR increases may introduce incompatible API changes. As soon as we have a 1.0.0 release, the public API can only be changed in a backward-incompatible manner with an increase in MAJOR version.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format, following PEP 440.
Note
Development versions and pre-releases have a suffix after
the release number, such as 0.7.0+12.gFEED2BEEF. If you have
problems, try out a full release (e.g. 0.7.0) first.
Data¶
- maicos.__version__ = '0.11.3.dev18+g6b8f45352'¶
str(object=’’) -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to ‘utf-8’. errors defaults to ‘strict’.