mirror of https://github.com/aristocratos/bpytop
parent
843209c602
commit
a2cdebdac7
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
|
||||
## v1.0.63
|
||||
|
||||
* Added: Options for choosing temperature scale and readded support for negative celsius temps
|
||||
* Changed: Cpu values above 0 will always register on the graphs
|
||||
|
||||
## v1.0.62
|
||||
|
||||
* Fixed: Support cpus with non-sequential core ids, patch by @ErwinJunge
|
||||
|
|
|
@ -55,7 +55,7 @@ if errors:
|
|||
print("\nInstall required modules!\n")
|
||||
raise SystemExit(1)
|
||||
|
||||
VERSION: str = "1.0.62"
|
||||
VERSION: str = "1.0.63"
|
||||
|
||||
#? Argument parser ------------------------------------------------------------------------------->
|
||||
args = argparse.ArgumentParser()
|
||||
|
|
|
@ -188,10 +188,10 @@ description = "python code static checker"
|
|||
name = "pylint"
|
||||
optional = false
|
||||
python-versions = ">=3.5.*"
|
||||
version = "2.6.0"
|
||||
version = "2.6.2"
|
||||
|
||||
[package.dependencies]
|
||||
astroid = ">=2.4.0,<=2.5"
|
||||
astroid = ">=2.4.0,<2.5"
|
||||
colorama = "*"
|
||||
isort = ">=4.2.5,<6"
|
||||
mccabe = ">=0.6,<0.7"
|
||||
|
@ -411,8 +411,8 @@ py = [
|
|||
{file = "py-1.10.0.tar.gz", hash = "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3"},
|
||||
]
|
||||
pylint = [
|
||||
{file = "pylint-2.6.0-py3-none-any.whl", hash = "sha256:bfe68f020f8a0fece830a22dd4d5dddb4ecc6137db04face4c3420a46a52239f"},
|
||||
{file = "pylint-2.6.0.tar.gz", hash = "sha256:bb4a908c9dadbc3aac18860550e870f58e1a02c9f2c204fdf5693d73be061210"},
|
||||
{file = "pylint-2.6.2-py3-none-any.whl", hash = "sha256:e71c2e9614a4f06e36498f310027942b0f4f2fde20aebb01655b31edc63b9eaf"},
|
||||
{file = "pylint-2.6.2.tar.gz", hash = "sha256:718b74786ea7ed07aa0c58bf572154d4679f960d26e9641cc1de204a30b87fc9"},
|
||||
]
|
||||
pyparsing = [
|
||||
{file = "pyparsing-2.4.7-py2.py3-none-any.whl", hash = "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b"},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "bpytop"
|
||||
version = "1.0.62"
|
||||
version = "1.0.63"
|
||||
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
|
||||
readme = "README.md"
|
||||
authors = ["Aristocratos <jakob@qvantnet.com>"]
|
||||
|
|
Loading…
Reference in New Issue