File: version.py

package info (click to toggle)
ssh-import-id 5.10-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: python: 310; sh: 140; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
# This file is part of ssh-import-id. See LICENSE file for more info.

_LAST_RELEASE = "5.10"
_PACKAGED_VERSION = '@@PACKAGED_VERSION@@'

VERSION = _LAST_RELEASE

if not _PACKAGED_VERSION.startswith("@@"):
    VERSION = _PACKAGED_VERSION

# vi: ts=4 expandtab syntax=python