Files
django-anymail/anymail/_version.py
medmunds b4e22c63b3 Reformat code with automated tools
Apply standardized code style
2023-02-06 15:05:24 -08:00

8 lines
196 B
Python

VERSION = (9, 0)
#: major.minor.patch or major.minor.devN
__version__ = ".".join([str(x) for x in VERSION])
#: Sphinx's X.Y "version"
__minor_version__ = ".".join([str(x) for x in VERSION[:2]])