Added APScheduler to requirements.txt, README update.

This commit is contained in:
Johannes Findeisen 2022-09-29 08:06:12 +02:00
commit 7d470ba94b
3 changed files with 4 additions and 3 deletions

View file

@ -57,7 +57,7 @@ of Linspector. :)
- All of this project **must be MIT licensed**. When using 3rd party libraries make - 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 sure the license is compatible but MIT should always be preferred if an
alternative is available. 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 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 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 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 - Inline comment should be all lowercase. Descriptions and documentation comments
must be natural language. must be natural language.
### Included libraries ### Required libraries
Currently, the Linspector source tree contains the following 3rd party libraries: Currently, the Linspector source tree contains the following 3rd party libraries:

View file

@ -32,7 +32,7 @@ from linspector.core.environment import Environment
from linspector.core.linspector import Linspector from linspector.core.linspector import Linspector
from linspector.core.monitors import Monitors from linspector.core.monitors import Monitors
__version__ = '0.19.1' __version__ = '0.19.2'
__author__ = 'Johannes Findeisen <you@hanez.org>' __author__ = 'Johannes Findeisen <you@hanez.org>'
logger = logging.getLogger('linspector') logger = logging.getLogger('linspector')

View file

@ -1,3 +1,4 @@
APScheduler~=3.9.1
CherryPy~=18.8.0 CherryPy~=18.8.0
PyQt5~=5.15.7 PyQt5~=5.15.7
SQLAlchemy~=1.4.40 SQLAlchemy~=1.4.40