From 517d3ff3bb57fabd94838984a2a4ab1e28d64187 Mon Sep 17 00:00:00 2001 From: Steve Martinelli Date: Wed, 16 Nov 2016 15:16:43 -0500 Subject: [PATCH] deprecate the entire library the library is essentially unmaintained, no tests have been added since it's inception 1.5 years ago. we can move the functionality to django_openstack_auth proper using extras, or attic the entire library if no one is using it. either way, this is a step toward both of those outcomes. Change-Id: I5e2cf2852e89586415ddbe8da022f7461b3ba0d6 Closes-Bug: 1584432 --- openstack_auth_kerberos/__init__.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/openstack_auth_kerberos/__init__.py b/openstack_auth_kerberos/__init__.py index e69de29..dee8e9c 100644 --- a/openstack_auth_kerberos/__init__.py +++ b/openstack_auth_kerberos/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +# 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 + + +warnings.warn( + "The openstack_auth_kerberos package is deprecated in favor of " + "authenticating with kerberos through federation, this library will " + "no longer be supported.", + DeprecationWarning)