928 B
928 B
Interaction with Django
semantic_version.django_fields
The python-semanticversion package provides two custom
fields for Django:
VersionField: stores asemantic_version.VersionobjectSpecField: stores asemantic_version.Specobject
Those fields are django.db.models.CharField subclasses, with their
~django.db.models.CharField.max_length defaulting to
200.
Stores a semantic_version.Version as its string
representation.
partial
Boolean; whether ~semantic_version.Version.partial versions are
allowed.
coerce
Boolean; whether passed in values should be coerced into a semver string before storing.
Stores a semantic_version.Spec as its comma-separated string
representation.