Merge "Deprecate Windows support"

This commit is contained in:
Zuul 2023-12-11 13:29:07 +00:00 committed by Gerrit Code Review
commit 03a53003f8
2 changed files with 7 additions and 0 deletions

View File

@ -11,10 +11,13 @@
# under the License.
import os
import warnings
from oslo_log import log as logging
if os.name == 'nt':
warnings.warn('Support for Windows OS is deprecated.',
category=DeprecationWarning, stacklevel=3)
from os_vif.internal.ip.windows.impl_netifaces import \
Netifaces as ip_lib_class
else:

View File

@ -0,0 +1,4 @@
---
features:
- |
Support for Windows operating systems has been deprecated.