Liking cljdoc? Tell your friends :D

pip-license-checker.version

Version parsing and comparing

Version parsing and comparing
raw docstring

arbitrary-eqclj

(arbitrary-eq a b)

Return true if string representation of version a equal to b See more: https://www.python.org/dev/peps/pep-0440/#arbitrary-equality

Return true if string representation of version a equal to b
See more:
https://www.python.org/dev/peps/pep-0440/#arbitrary-equality
sourceraw docstring

compare-letter-versionclj

(compare-letter-version a b)

Compare vectors of [name version] shape with possible fallbacks to +/- Inf NB! Comparator will break if assumed shape of vectors is violated

Compare vectors of [name version] shape with possible fallbacks to +/- Inf
NB! Comparator will break if assumed shape of vectors is violated
sourceraw docstring

compare-versionclj

(compare-version a b)

Compare version maps

Compare version maps
sourceraw docstring

compatibleclj

(compatible a b)

Return true if version a is compatible with b Compatible releases have an equivalent combination of >= and ==. That is that ~=2.2 is equivalent to >=2.2,==2.*. See more: https://www.python.org/dev/peps/pep-0440/#compatible-release

Return true if version a is compatible with b
Compatible releases have an equivalent combination of >= and ==.
That is that ~=2.2 is equivalent to >=2.2,==2.*.
See more:
https://www.python.org/dev/peps/pep-0440/#compatible-release
sourceraw docstring

eqclj

(eq a b)

Return true if versions a and b are equal

Return true if versions a and b are equal
sourceraw docstring

filter-versionsclj

(filter-versions specifiers versions & {:keys [pre] :or {pre true}})

Return lazy seq of parsed versions that satisfy specifiers

Return lazy seq of parsed versions that satisfy specifiers
sourceraw docstring

geclj

(ge a b)

Return true if version a greater than or equal to b

Return true if version a greater than or equal to b
sourceraw docstring

get-comparable-versionclj

(get-comparable-version version-map)

Get parsed version map formatted to be comparable See more details in pypa/packaging: https://github.com/pypa/packaging/blob/20.8/packaging/version.py#L505

Get parsed version map formatted to be comparable
See more details in pypa/packaging:
https://github.com/pypa/packaging/blob/20.8/packaging/version.py#L505
sourceraw docstring

get-comparison-opclj

(get-comparison-op op)

Get comparison function for operator string

Get comparison function for operator string
sourceraw docstring

get-versionclj

(get-version specifiers versions & {:keys [pre] :or {pre true}})

Get the most recent version from given versions that satisfies specifiers

Get the most recent version from given versions that satisfies specifiers
sourceraw docstring

gtclj

(gt a b)

Return true if version a greater than b

Return true if version a greater than b
sourceraw docstring

leclj

(le a b)

Return true if version a less than or equal to b

Return true if version a less than or equal to b
sourceraw docstring

ltclj

(lt a b)

Return true if version a less than b

Return true if version a less than b
sourceraw docstring

neqclj

(neq a b)

Return true if versions a and b are not equal

Return true if versions a and b are not equal
sourceraw docstring

pad-vectorclj

(pad-vector vec-val len pad-val)

Append padding values to a given vector to make it of the specified len Used to compare vectors of numbers

Append padding values to a given vector to make it of the specified len
Used to compare vectors of numbers
sourceraw docstring

parse-letter-versionclj

(parse-letter-version letter number)

Parse letter part of version

Parse letter part of version
sourceraw docstring

parse-local-versionclj

(parse-local-version local)

Parse strings into vec with string parsed into ints if possible

Parse strings into vec with string parsed into ints if possible
sourceraw docstring

parse-numberclj

(parse-number number)

Parse number string into integer or return 0

Parse number string into integer or return 0
sourceraw docstring

parse-specifierclj

(parse-specifier specifier-str)

Parse single specifier string into a vec of operator function and version map. E.g. '>=1.2.3 parsed into [parsed-op parsed-version]

Parse single specifier string into a vec of operator function and version map.
E.g. '>=1.2.3 parsed into [parsed-op parsed-version]
sourceraw docstring

parse-specifiersclj

(parse-specifiers specifiers-str)

Parse a string of specifiers into a vec of parsed specifier vecs/ E.g. '>=1.2.3,<2' parsed into [[>=' 1.2.3'] [<' 2']]

Parse a string of specifiers into a vec of parsed specifier vecs/
E.g. '>=1.2.3,<2' parsed into [[>=' 1.2.3'] [<' 2']]
sourceraw docstring

parse-versionclj

(parse-version version-str)

Return a hash-map of regex groups

Return a hash-map of regex groups
sourceraw docstring

regex-specifierclj

source

regex-split-commaclj

source

regex-versionclj

source

same-release-with-post-or-local?clj

(same-release-with-post-or-local? a b)

Check if version to be excluded from >V comparison as per https://www.python.org/dev/peps/pep-0440/#exclusive-ordered-comparison

Check if version to be excluded from >V comparison as per
https://www.python.org/dev/peps/pep-0440/#exclusive-ordered-comparison
sourceraw docstring

same-release-with-pre-or-local?clj

(same-release-with-pre-or-local? a b)

Check if version to be excluded from <V comparison as per https://www.python.org/dev/peps/pep-0440/#exclusive-ordered-comparison

Check if version to be excluded from <V comparison as per
https://www.python.org/dev/peps/pep-0440/#exclusive-ordered-comparison
sourceraw docstring

sort-versionsclj

(sort-versions versions & {:keys [order] :or {order :asc}})

Sort a vector of parsed versions. Ascending sort order is used by default.

Sort a vector of parsed versions.
Ascending sort order is used by default.
sourceraw docstring

truncate-releaseclj

(truncate-release release)

Return release vector with trailing zero parts dropped

Return release vector with trailing zero parts dropped
sourceraw docstring

validate-versionclj

(validate-version version-map)
source

version-ok?clj

(version-ok? specifiers version)

Return true if a parsed version satisfies each specifier Specifiers is a collection of vec [specifier-op specifier-version]

Return true if a parsed version satisfies each specifier
Specifiers is a collection of vec [specifier-op specifier-version]
sourceraw docstring

version-stable?clj

(version-stable? version)

Return true if version is neither pre-release or development version

Return true if version is neither pre-release or development version
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close