25 lines
622 B
Python
25 lines
622 B
Python
# Copyright The IETF Trust 2007-2020, All Rights Reserved
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from . import checks # pyflakes:ignore
|
|
|
|
# Version must stay in single quotes for automatic CI replace
|
|
# Don't add patch number here:
|
|
__version__ = '7.0.0-dev'
|
|
|
|
# Release hash must stay in single quotes for automatic CI replace
|
|
__release_hash__ = ''
|
|
|
|
# Release branch must stay in single quotes for automatic CI replace
|
|
__release_branch__ = ''
|
|
|
|
# set this to ".p1", ".p2", etc. after patching
|
|
__patch__ = ""
|
|
|
|
__date__ = "$Date$"
|
|
|
|
__rev__ = "$Rev$ (dev) Latest release: Rev. 19974 "
|
|
|
|
__id__ = "$Id$"
|