All Projects → RazerM → parver

RazerM / parver

Licence: MIT license
Parse and manipulate version numbers.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to parver

Changelog
📘 semantic-release plugin to create or update a changelog file
Stars: ✭ 142 (+246.34%)
Mutual labels:  version
Clearml
ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management
Stars: ✭ 2,868 (+6895.12%)
Mutual labels:  version
git
🔀 semantic-release plugin to commit release assets to the project's git repository
Stars: ✭ 235 (+473.17%)
Mutual labels:  version
Github
semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues
Stars: ✭ 159 (+287.8%)
Mutual labels:  version
Clearml Server
ClearML - Auto-Magical Suite of tools to streamline your ML workflow. Experiment Manager, ML-Ops and Data-Management
Stars: ✭ 186 (+353.66%)
Mutual labels:  version
Checkversionlib
版本检测升级(更新)库。an auto check version library(app update) on Android
Stars: ✭ 2,546 (+6109.76%)
Mutual labels:  version
Reckon
Infer a project's version from your Git repository.
Stars: ✭ 124 (+202.44%)
Mutual labels:  version
next-ver
Tells you the next semantic version for your local package
Stars: ✭ 27 (-34.15%)
Mutual labels:  version
Npmvet
A simple CLI tool for vetting npm package versions
Stars: ✭ 193 (+370.73%)
Mutual labels:  version
package-info.nvim
✍️ All the npm/yarn commands I don't want to type
Stars: ✭ 248 (+504.88%)
Mutual labels:  version
Version
Represent and compare versions via semantic versioning (SemVer) in Swift
Stars: ✭ 160 (+290.24%)
Mutual labels:  version
Luaver
Lua Version Manager - Managing and switching between different versions of Lua, LuaJIT and Luarocks made easy
Stars: ✭ 179 (+336.59%)
Mutual labels:  version
Nvm Windows
A node.js version management utility for Windows. Ironically written in Go.
Stars: ✭ 18,587 (+45234.15%)
Mutual labels:  version
Semver.c
Semantic version library written in ANSI C
Stars: ✭ 147 (+258.54%)
Mutual labels:  version
bin-version-cli
Get the version of a binary in semver format
Stars: ✭ 36 (-12.2%)
Mutual labels:  version
Pip Check
pip-check gives you a quick overview of all installed packages and their update status.
Stars: ✭ 134 (+226.83%)
Mutual labels:  version
Please Upgrade Node
💁 Show a message to your users to upgrade Node instead of a stacktrace
Stars: ✭ 219 (+434.15%)
Mutual labels:  version
autorevision
A script for extracting version information useful in release/build scripting.
Stars: ✭ 73 (+78.05%)
Mutual labels:  version
pro.fessional.wings
WingsBoot=BKB+飞鞋+SpringBoot。其核心价值是:①使团队快速实现业务目标;②快速偿还技术债务;③安全的面向程序和业务重构。
Stars: ✭ 78 (+90.24%)
Mutual labels:  version
KanColle-English-Patch-KCCP
English Patch for the original KanColle browser game, to be used with KCCacheProxy. Translates most of the game into english.
Stars: ✭ 28 (-31.71%)
Mutual labels:  version
PyPI Documentation Status CI Status Test coverage MIT License

parver

parver allows parsing and manipulation of PEP 440 version numbers.

Example

>>> Version.parse('1.3').bump_dev()
<Version '1.3.dev0'>
>>> v = Version.parse('v1.2.alpha-3')
>>> v.is_alpha
True
>>> v.pre
3
>>> v
<Version 'v1.2.alpha-3'>
>>> v.normalize()
<Version '1.2a3'>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].