Remove deprecated compat.selector (#84155)

* Removed files related to selector compat

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/84158/head
Abhijeet Kasurde 1 month ago committed by GitHub
parent 1e6ffc1d02
commit b1816880cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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',
)

@ -157,9 +157,7 @@ lib/ansible/modules/user.py pylint:used-before-assignment
lib/ansible/plugins/action/copy.py pylint:undefined-variable
test/integration/targets/module_utils/library/test_optional.py pylint:used-before-assignment
test/support/windows-integration/plugins/action/win_copy.py pylint:undefined-variable
lib/ansible/compat/selectors.py pylint:ansible-deprecated-version
lib/ansible/module_utils/compat/importlib.py pylint:ansible-deprecated-version
lib/ansible/module_utils/compat/selectors.py pylint:ansible-deprecated-version
lib/ansible/module_utils/pycompat24.py pylint:ansible-deprecated-version
lib/ansible/plugins/connection/__init__.py pylint:ansible-deprecated-version
lib/ansible/plugins/filter/core.py pylint:ansible-deprecated-version

Loading…
Cancel
Save