Code Monkey home page Code Monkey logo

flexversion's Introduction

FlexVersion

A cute Python library to manipulate Semantic Versioning.

Latest

Terminology

A software version is a numbered string to record the development progress or iteration of software applications. This tiny, cute library handles with some common processing when you require awareness-versioning processing in your program.

A representative version would be like 1.0, 2.0.1, sometimes with suffix of maintenance stage such as 1.0-beta1. In FlexVersion, a standard version takes the form of

[prefix-]x[.y[.z[.b]]][-suffix]

in which:

  • prefix: usually taking the software name, such as flex_version-1.0, OPTIONAL
  • x: the major version, REQUIRED
  • y: the minor version, OPTIONAL
  • z: the maintenance version, OPTIONAL
  • b: the build version, OPTIONAL
  • suffix: usually taking the QA stage label such as alpha, beta etc., OPTIONAL

Install

pip install -U flex_version

Routines

from flex_version import FlexVersion

Utility class for available methods:

  • parse_version(ver_str): Parse a versioning string into VersionMeta.

  • in_range(v, minx, maxv): Check if a version v lies between (minv, maxv).

  • compares(v1, v2): Compare the level of two versions, returns -1 (lower), 0 (equal), and 1 (larger).

  • shares_prefix(v1, v2): Check if two versions sharing the same prefix.

  • shares_suffix(v1, v2): Check if two versions sharing the same suffix.

By

Xiaming Chen [email protected]

flexversion's People

Contributors

caesar0301 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.