usr/lib/python3.6/site-packages/tuned/version.py000064400000000253147205100160015565 0ustar00TUNED_VERSION_MAJOR = 2 TUNED_VERSION_MINOR = 22 TUNED_VERSION_PATCH = 1 TUNED_VERSION_STR = "%d.%d.%d" % (TUNED_VERSION_MAJOR, TUNED_VERSION_MINOR, TUNED_VERSION_PATCH) usr/lib/python3.6/site-packages/pyudev/version.py000064400000002115147205230110015760 0ustar00# -*- coding: utf-8 -*- # Copyright (C) 2015 mulhern # This library is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License as published by the # Free Software Foundation; either version 2.1 of the License, or (at your # option) any later version. # This library is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License # for more details. # You should have received a copy of the GNU Lesser General Public License # along with this library; if not, write to the Free Software Foundation, # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA """ pyudev.version ============== Version information. .. moduleauthor:: mulhern """ __version_info__ = (0, 21, 0, '') __version__ = "%s%s" % \ ( ".".join(str(x) for x in __version_info__[:3]), "".join(str(x) for x in __version_info__[3:]) ) var/opt/nydus/ops/oscrypto/version.py000064400000000230147205255740014030 0ustar00# coding: utf-8 from __future__ import unicode_literals, division, absolute_import, print_function __version__ = '1.3.0' __version_info__ = (1, 3, 0) var/opt/nydus/ops/asn1crypto/version.py000064400000000230147205261120014236 0ustar00# coding: utf-8 from __future__ import unicode_literals, division, absolute_import, print_function __version__ = '1.5.1' __version_info__ = (1, 5, 1)