From 9be7250a4adfaa9470725743b6cb5e5742a4fc3c Mon Sep 17 00:00:00 2001 From: aristocratos Date: Tue, 27 Oct 2020 17:36:21 +0100 Subject: [PATCH] v1.0.47 Fixed mypy type errors and added testing --- CHANGELOG.md | 4 +++- bpytop.py | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7666b4d..88ff254 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Changelog -## v1.0.47 (Under development) +## v1.0.47 * Added: Testing, by @ErwinJunge * Added: Theme matcha-dark-sea, by @TheCynicalLiger +* Fixed: New type errors for mypy v 0.790 +* Added: pylint and mypy test with tox, by @ErwinJunge ## v1.0.46 diff --git a/bpytop.py b/bpytop.py index 933373f..834f47d 100755 --- a/bpytop.py +++ b/bpytop.py @@ -55,7 +55,7 @@ if errors: print("\nInstall required modules!\n") raise SystemExit(1) -VERSION: str = "1.0.46" +VERSION: str = "1.0.47" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index cf50dcf..beac80c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.46" +version = "1.0.47" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]