896d767ec0
Change-Id: Idd980e81e5567611c08839f0f297db2aa3eb07eb Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
26 lines
881 B
Python
26 lines
881 B
Python
# Copyright 2016 OpenStack Foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import warnings
|
|
|
|
import pbr.version
|
|
|
|
warnings.warn(
|
|
f'The {__name__} module is deprecated. Prefer use of importlib.metadata '
|
|
f'to inspect version information for packages.',
|
|
DeprecationWarning,
|
|
)
|
|
|
|
version_info = pbr.version.VersionInfo('oslo.privsep')
|