mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 21:51:14 -07:00
Bump dnspython from 2.2.1 to 2.3.0 (#1975)
* Bump dnspython from 2.2.1 to 2.3.0 Bumps [dnspython](https://github.com/rthalley/dnspython) from 2.2.1 to 2.3.0. - [Release notes](https://github.com/rthalley/dnspython/releases) - [Changelog](https://github.com/rthalley/dnspython/blob/master/doc/whatsnew.rst) - [Commits](https://github.com/rthalley/dnspython/compare/v2.2.1...v2.3.0) --- updated-dependencies: - dependency-name: dnspython dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update dnspython==2.3.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
This commit is contained in:
parent
6910079330
commit
32c06a8b72
137 changed files with 7699 additions and 4277 deletions
|
@ -20,27 +20,39 @@
|
|||
#: MAJOR
|
||||
MAJOR = 2
|
||||
#: MINOR
|
||||
MINOR = 2
|
||||
MINOR = 3
|
||||
#: MICRO
|
||||
MICRO = 1
|
||||
MICRO = 0
|
||||
#: RELEASELEVEL
|
||||
RELEASELEVEL = 0x0f
|
||||
RELEASELEVEL = 0x0F
|
||||
#: SERIAL
|
||||
SERIAL = 0
|
||||
SERIAL = 1
|
||||
|
||||
if RELEASELEVEL == 0x0f: # pragma: no cover
|
||||
if RELEASELEVEL == 0x0F: # pragma: no cover lgtm[py/unreachable-statement]
|
||||
#: version
|
||||
version = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
|
||||
elif RELEASELEVEL == 0x00: # pragma: no cover
|
||||
version = '%d.%d.%ddev%d' % \
|
||||
(MAJOR, MINOR, MICRO, SERIAL)
|
||||
elif RELEASELEVEL == 0x0c: # pragma: no cover
|
||||
version = '%d.%d.%drc%d' % \
|
||||
(MAJOR, MINOR, MICRO, SERIAL)
|
||||
else: # pragma: no cover
|
||||
version = '%d.%d.%d%x%d' % \
|
||||
(MAJOR, MINOR, MICRO, RELEASELEVEL, SERIAL)
|
||||
version = "%d.%d.%d" % (MAJOR, MINOR, MICRO) # lgtm[py/unreachable-statement]
|
||||
elif RELEASELEVEL == 0x00: # pragma: no cover lgtm[py/unreachable-statement]
|
||||
version = "%d.%d.%ddev%d" % (
|
||||
MAJOR,
|
||||
MINOR,
|
||||
MICRO,
|
||||
SERIAL,
|
||||
) # lgtm[py/unreachable-statement]
|
||||
elif RELEASELEVEL == 0x0C: # pragma: no cover lgtm[py/unreachable-statement]
|
||||
version = "%d.%d.%drc%d" % (
|
||||
MAJOR,
|
||||
MINOR,
|
||||
MICRO,
|
||||
SERIAL,
|
||||
) # lgtm[py/unreachable-statement]
|
||||
else: # pragma: no cover lgtm[py/unreachable-statement]
|
||||
version = "%d.%d.%d%x%d" % (
|
||||
MAJOR,
|
||||
MINOR,
|
||||
MICRO,
|
||||
RELEASELEVEL,
|
||||
SERIAL,
|
||||
) # lgtm[py/unreachable-statement]
|
||||
|
||||
#: hexversion
|
||||
hexversion = MAJOR << 24 | MINOR << 16 | MICRO << 8 | RELEASELEVEL << 4 | \
|
||||
SERIAL
|
||||
hexversion = MAJOR << 24 | MINOR << 16 | MICRO << 8 | RELEASELEVEL << 4 | SERIAL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue