8000 GitHub - Rust-Python-Packaging/pyver at 303d3ee80473c1c46785ba21d7ce274b14bd9fda
[go: up one dir, main page]

Skip to content

Rust-Python-Packaging/pyver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyVer (WIP)

License

Python PEP-440 Version Parsing

This package allows for parsing Python PEP-440 version numbers and comparisons between PEP-440 Versions

Usage

[dependencies]
pyver = "0.0.1"
use pyver::PackageVersion;

let a = PackageVersion::new("v1.0a2.dev456").unwrap();
let b = PackageVersion::new("v1.0a2.dev457").unwrap();

assert_eq!(a < b, true);

Contribution

For now Contributions will be quite loose.

0