Skip to content

Commit fb3ba5a

Browse files
authored
OP-75955 Update copyrights to 2026 (#16)
2 parents da2784f + 86af524 commit fb3ba5a

26 files changed

+45
-41
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (C) 2003-2026 ITRS Group Ltd. All rights reserved
2+
13
target
24
Dockerfile.test
35
*.bak

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ branches:
77
- master
88

99
python:
10-
- "2.7"
10+
- "3.6"
1111
- "3.7"
1212

1313
install:

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2003-2025 ITRS Group Ltd
1+
Copyright (C) 2003-2026 ITRS Group Ltd
22

33
Apache License
44
Version 2.0, January 2004
@@ -176,4 +176,4 @@ Copyright (C) 2003-2025 ITRS Group Ltd
176176
of your accepting any such warranty or additional liability.
177177

178178
END OF TERMS AND CONDITIONS
179-
179+

Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Makefile for plugin-lib-python
2-
# Copyright (C) 2003-2025 ITRS Group Ltd. All rights reserved
2+
# Copyright (C) 2003-2026 ITRS Group Ltd. All rights reserved
33

44
# List special make targets that are not associated with files
55
.PHONY: help venv3 version verify test tox3 lint doc format clean
@@ -60,30 +60,30 @@ version:
6060

6161
# Build a Wheel package
6262
build: clean version venv3
63-
cp LICENSE README.md plugnpy; \
64-
source .venv3/bin/activate ; \
65-
python setup.py sdist bdist_wheel; \
63+
cp LICENSE README.md plugnpy && \
64+
source .venv3/bin/activate && \
65+
python setup.py sdist bdist_wheel && \
6666
rm plugnpy/LICENSE plugnpy/README.md
6767

6868
# Run tests and linting
6969
verify: lint test
7070

7171
# Test using tox
7272
test: venv3
73-
source .venv3/bin/activate ; \
74-
python -m tox ; \
73+
source .venv3/bin/activate && \
74+
python -m tox && \
7575
coverage html
7676

7777
# Run tests on python3
7878
tox3: venv3
79-
source .venv3/bin/activate ; \
79+
source .venv3/bin/activate && \
8080
python -m tox -e plugnpy
8181

8282
# Evaluate code
8383
lint: venv3
84-
source .venv3/bin/activate ; \
85-
pyflakes ${PROJECT} ; \
86-
pylint ${PROJECT} ; \
84+
source .venv3/bin/activate && \
85+
pyflakes ${PROJECT} && \
86+
pylint ${PROJECT} && \
8787
pycodestyle --max-line-length=120 ${PROJECT}
8888

8989
# Generate source code documentation

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# plugnpy
22

33

4-
*A Simple Python Library for creating [Opsview Opspack plugins](https://docs.itrsgroup.com/docs/opsview/6.11.7/configuration/service-checks-and-host/active-checks/index.html).*
4+
*A Simple Python Library for creating [Opsview Opspack plugins](https://docs.itrsgroup.com/docs/opsview/current/configuration/service-checks-and-host/active-checks/index.html).*
55

66
[![Master Build Status](https://secure.travis-ci.org/opsview/plugnpy.png?branch=master)](https://travis-ci.org/opsview/plugnpy?branch=master)
77
[![Master Coverage Status](https://coveralls.io/repos/opsview/plugnpy/badge.svg?branch=master&service=github)](https://coveralls.io/github/opsview/plugnpy?branch=master)
88

99
* **category** Libraries
10-
* **copyright** 2003-2025 ITRS Group Ltd
10+
* **copyright** 2003-2026 ITRS Group Ltd
1111
* **license** Apache License Version 2.0 (see [LICENSE](LICENSE))
1212
* **link** https://github.com/opsview/plugnpy
1313

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.19
1+
2.1.0

examples/check_cpu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (C) 2003-2025 ITRS Group Ltd. All rights reserved
2+
# Copyright (C) 2003-2026 ITRS Group Ltd. All rights reserved
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

examples/check_disk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (C) 2003-2025 ITRS Group Ltd. All rights reserved
2+
# Copyright (C) 2003-2026 ITRS Group Ltd. All rights reserved
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

examples/check_memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (C) 2003-2025 ITRS Group Ltd. All rights reserved
2+
# Copyright (C) 2003-2026 ITRS Group Ltd. All rights reserved
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

plugnpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
plugnpy - A Simple Python Library for creating Opsview Opspack plugins
3-
Copyright (C) 2003-2025 ITRS Group Limited. All rights reserved
3+
Copyright (C) 2003-2026 ITRS Group Limited. All rights reserved
44
"""
55

66
__version__ = '2.1.0'

0 commit comments

Comments
 (0)