Skip to main content

Parse, compare, bump, and validate semantic version strings

Project description

philiprehberger-semver

Tests PyPI version Last updated

Parse, compare, bump, and validate semantic version strings.

Installation

pip install philiprehberger-semver

Usage

from philiprehberger_semver import parse, bump, compare, satisfies, is_valid, sort_versions, next_pre

Parsing

v = parse("1.2.3-beta.1+build.42")
v.major  # 1
v.minor  # 2
v.patch  # 3
v.pre    # "beta.1"
v.build  # "build.42"
str(v)   # "1.2.3-beta.1+build.42"

A leading v prefix is accepted:

parse("v2.0.0")  # Version(major=2, minor=0, patch=0)

Bumping

bump("1.2.3", "major")  # "2.0.0"
bump("1.2.3", "minor")  # "1.3.0"
bump("1.2.3", "patch")  # "1.2.4"

Comparing

compare("1.2.3", "1.3.0")  # -1
compare("2.0.0", "2.0.0")  #  0
compare("3.0.0", "2.9.9")  #  1

Range matching

satisfies("1.5.0", ">=1.0.0 <2.0.0")  # True
satisfies("1.2.5", "^1.2.3")           # True  (>=1.2.3 <2.0.0)
satisfies("1.2.5", "~1.2.3")           # True  (>=1.2.3 <1.3.0)
satisfies("1.3.0", "~1.2.3")           # False

Validation

is_valid("1.2.3")        # True
is_valid("not-a-version") # False

Sorting

sort_versions(["2.0.0", "1.0.0", "1.1.0"])  # ["1.0.0", "1.1.0", "2.0.0"]

Pre-release generation

next_pre("1.2.3")         # "1.2.4-rc.1"
next_pre("1.2.4-rc.1")    # "1.2.4-rc.2"
next_pre("1.2.3", "beta") # "1.2.4-beta.1"

API

Function Description
parse(version) Parse a semver string into a Version object
bump(version, part) Bump major, minor, or patch and return the new version string
compare(a, b) Compare two version strings, returns -1, 0, or 1
satisfies(version, range_str) Check if a version satisfies a range (>=, <, ^, ~)
is_valid(version) Check if a string is valid semver
sort_versions(versions) Sort a list of version strings in ascending order
next_pre(version, prefix) Generate the next pre-release version string

Development

pip install -e .
python -m pytest tests/ -v

Support

If you find this project useful:

Star the repo

🐛 Report issues

💡 Suggest features

❤️ Sponsor development

🌐 All Open Source Projects

💻 GitHub Profile

🔗 LinkedIn Profile

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

philiprehberger_semver-0.1.7.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

philiprehberger_semver-0.1.7-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file philiprehberger_semver-0.1.7.tar.gz.

File metadata

  • Download URL: philiprehberger_semver-0.1.7.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for philiprehberger_semver-0.1.7.tar.gz
Algorithm Hash digest
SHA256 e8762062b81113e46c50cb4c3364231b68868c7832b91b3588f7c33c01c42dfb
MD5 7ca2981a527c1dd89b976ca21e8b7a23
BLAKE2b-256 c79911f8368abbae871908a1a4e15d16fd39dd4acb590c6a10f9c31c2b94f4d0

See more details on using hashes here.

File details

Details for the file philiprehberger_semver-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for philiprehberger_semver-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 2c82cacd7f503a1fb3d8bc22dd65789abc59567735835892622aed6073d3dd79
MD5 3eb7b1948fe1e4921efee62c7b294b66
BLAKE2b-256 692ad688984b98cb568460ff6e58245a5c3538a5878a2652fe19fdf32ab846aa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page