Skip to content

Commit 93d8d12

Browse files
Add deprecation notice in README (#347)
* Add deprecation notice in README Signed-off-by: NilashishC <[email protected]> * Remove tox.ini Signed-off-by: NilashishC <[email protected]> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: NilashishC <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 21e3948 commit 93d8d12

File tree

13 files changed

+8
-105
lines changed

13 files changed

+8
-105
lines changed

.pre-commit-config.yaml

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
---
22
repos:
3-
- repo: https://github.com/ansible-network/collection_prep
4-
rev: 1.1.1
5-
hooks:
6-
- id: update-docs
7-
83
- repo: https://github.com/pre-commit/pre-commit-hooks
94
rev: v4.4.0
105
hooks:
@@ -29,6 +24,6 @@ repos:
2924
args: ["--filter-files"]
3025

3126
- repo: https://github.com/psf/black
32-
rev: 23.9.1
27+
rev: 24.4.2
3328
hooks:
3429
- id: black

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@
33
# VyOS Collection
44
[![CI](https://zuul-ci.org/gated.svg)](https://dashboard.zuul.ansible.com/t/ansible/project/github.com/ansible-collections/vyos.vyos) <!--[![Codecov](https://img.shields.io/codecov/c/github/ansible-collections/vyos)](https://codecov.io/gh/ansible-collections/vyos)-->
55
[![Codecov](https://codecov.io/gh/ansible-collections/vyos.vyos/branch/main/graph/badge.svg)](https://codecov.io/gh/ansible-collections/vyos.vyos)
6+
7+
⚠️ **The vyos.vyos collection has been [deprecated](https://forum.ansible.com/t/the-bullhorn-123/2568#project-updates-8) and will reach it's end-of-life on December, 2025. We are no longer accepting new pull requests, except for ones that fix critical bugs or security vulnerabilities. Compatibility with ansible-core>2.17 is not guaranteed.**
8+
69
The Ansible VyOS collection includes a variety of Ansible content to help automate the management of VyOS network appliances.
710

811
This collection has been tested against VyOS 1.1.8 (helium).
912

1013
<!--start requires_ansible-->
1114
## Ansible version compatibility
1215

13-
This collection has been tested against following Ansible versions: **>=2.9.10**.
16+
This collection has been tested against following Ansible versions: **<2.18.0,>=2.15.0**.
1417

1518
For collections that support Ansible 2.9, please ensure you update your `network_os` to use the
1619
fully qualified collection name (for example, `cisco.ios.ios`).

plugins/module_utils/network/vyos/config/ospfv2/ospfv2.py

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535

3636

3737
class Ospfv2(ConfigBase):
38-
3938
"""
4039
The vyos_ospfv2 class
4140
"""

plugins/module_utils/network/vyos/facts/ospfv2/ospfv2.py

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525

2626
class Ospfv2Facts(object):
27-
2827
"""The vyos ospfv2 fact class"""
2928

3029
def __init__(

plugins/module_utils/network/vyos/facts/ospfv3/ospfv3.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,7 @@ def map_regex(self, attrib):
184184
return (
185185
"disable"
186186
if attrib == "disabled"
187-
else "enable"
188-
if attrib == "enabled"
189-
else attrib.replace("_", "-")
187+
else "enable" if attrib == "enabled" else attrib.replace("_", "-")
190188
)
191189

192190
def is_bool(self, attrib):

test-requirements.txt

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
1-
# For ansible-tox-linters
2-
black==23.3.0 ; python_version >= '3.7'
3-
flake8
4-
yamllint
5-
61
# Unit test runner
7-
pytest-ansible ; python_version >= '3.9'
8-
git+https://github.com/ansible-community/pytest-ansible-units.git ; python_version < '3.9'
2+
pytest-ansible
93
pytest-xdist
10-
11-
# For integration tests
12-
pexpect
4+
pytest-cov

tests/sanity/ignore-2.10.txt

-12
This file was deleted.

tests/sanity/ignore-2.11.txt

-12
This file was deleted.

tests/sanity/ignore-2.12.txt

-12
This file was deleted.

tests/sanity/ignore-2.14.txt

-1
This file was deleted.
File renamed without changes.

tests/sanity/ignore-2.9.txt

-14
This file was deleted.

tox.ini

-32
This file was deleted.

0 commit comments

Comments
 (0)