From 7d470ba94bec3e05133415d7d674f38efda275e0 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Thu, 29 Sep 2022 08:06:12 +0200 Subject: [PATCH] Added APScheduler to requirements.txt, README update. --- README.md | 4 ++-- bin/linspector | 2 +- requirements.txt | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8ac9971..4ed9efe 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ of Linspector. :) - All of this project **must be MIT licensed**. When using 3rd party libraries make sure the license is compatible but MIT should always be preferred if an alternative is available. -- The core of Linspector should not use 3rd party libraries. only plugins, +- The core of Linspector should not use 3rd party libraries. Only plugins, notifications and types may use other libraries. But coping code into the source tree is ok when respecting the license. Not using 3rd party libraries should always be preferred though. If adding 3rd party libraries to the Linspector @@ -66,7 +66,7 @@ submodule but as files imported into the Linspector Git repository! - Inline comment should be all lowercase. Descriptions and documentation comments must be natural language. -### Included libraries +### Required libraries Currently, the Linspector source tree contains the following 3rd party libraries: diff --git a/bin/linspector b/bin/linspector index efbd388..2069c53 100755 --- a/bin/linspector +++ b/bin/linspector @@ -32,7 +32,7 @@ from linspector.core.environment import Environment from linspector.core.linspector import Linspector from linspector.core.monitors import Monitors -__version__ = '0.19.1' +__version__ = '0.19.2' __author__ = 'Johannes Findeisen ' logger = logging.getLogger('linspector') diff --git a/requirements.txt b/requirements.txt index 95ddc35..50cb93e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +APScheduler~=3.9.1 CherryPy~=18.8.0 PyQt5~=5.15.7 SQLAlchemy~=1.4.40