mirror of https://github.com/ansible/ansible.git
Remove deprecated compat.selector (#84155)
* Removed files related to selector compat Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/84158/head
parent
1e6ffc1d02
commit
b1816880cb
@ -0,0 +1,3 @@
|
||||
---
|
||||
bugfixes:
|
||||
- selector - remove deprecated compat.selector related files (https://github.com/ansible/ansible/pull/84155).
|
@ -1,32 +0,0 @@
|
||||
# (c) 2014, 2017 Toshio Kuratomi <tkuratomi@ansible.com>
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible 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 General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import sys
|
||||
import selectors
|
||||
|
||||
from ansible.module_utils.common.warnings import deprecate
|
||||
|
||||
|
||||
sys.modules['ansible.compat.selectors'] = selectors
|
||||
|
||||
|
||||
deprecate(
|
||||
msg='The `ansible.module_utils.compat.selectors` module is deprecated.',
|
||||
version='2.19',
|
||||
)
|
@ -1,32 +0,0 @@
|
||||
# (c) 2014, 2017 Toshio Kuratomi <tkuratomi@ansible.com>
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible 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 General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import selectors
|
||||
import sys
|
||||
|
||||
from ansible.module_utils.common.warnings import deprecate
|
||||
|
||||
|
||||
sys.modules['ansible.module_utils.compat.selectors'] = selectors
|
||||
|
||||
|
||||
deprecate(
|
||||
msg='The `ansible.module_utils.compat.selectors` module is deprecated.',
|
||||
version='2.19',
|
||||
)
|
Loading…
Reference in New Issue