KrispyCamel4u / SysMonTask

Linux system monitor with the compactness and usefulness of windows task manager to allow higher control and monitoring.
BSD 3-Clause "New" or "Revised" License
678 stars 59 forks source link

Hello I fixed a broken version error in the setup.py. #133

Open SFMG2001 opened 9 months ago

SFMG2001 commented 9 months ago

Hello, I was installing sysmontask from source code and noticed when I ran it it refused to run with the error:

'version 1.x.x is not valid'

also told me to look at python's PEP440 or whatever. Decided nah I'm curious so I went in and found what it was complaining about. apparently when running setup.py it looks for the version string and when it comes across '1.x.x' it gets confused then fails. setting that to a valid version number fixed it. Hope this helps! :D

Kevin M. SFMG2001

Manjaro Linux

RedSnt commented 7 months ago

I'm getting the same errors. According to a quick internet search, results claim that it's due to an invalid version scheme. If you check setup.py with a text editor, on line 18 there's version='1.x.x', - changing that to, say 1.0.0 helped me compile it correctly.
(On a 2009, 1GB ram, 32-bit (1 core) 2 thread CPU EeePC running Q4OS (Debian)).
It works just fine 👍

SFMG2001 commented 5 months ago

I'm getting the same errors. According to a quick internet search, results claim that it's due to an invalid version scheme. If you check setup.py with a text editor, on line 18 there's version='1.x.x', - changing that to, say 1.0.0 helped me compile it correctly. (On a 2009, 1GB ram, 32-bit (1 core) 2 thread CPU EeePC running Q4OS (Debian)). It works just fine 👍

indeed! I wonder if he'll implement the fix or is this project dead?