Lab Rat
Lab Rat
It might be possible that it happens because of lack of `.git` directory, mandated due to dynamic versioning. See https://github.com/AdnanHodzic/auto-cpufreq/issues/623
> A more permanent fix would be to separare the two packages and let the user decide if it actually wants the GTK interface. I kind-of agree with this. In...
> > > EDIT: maybe just removing the gui stuff from the toml file is enough, I didn't test it > > > > Can confirm that this works! I...
Some Updates! I tried the group dependency and extras in poetry, although they are perfect for installing deps, based on type of OS(controlled through flag in Installer script), but we...
> In the auto-cpufreq-gtk.py script you can check for the packages presence and base the installation from there. It would not be perfect since if someone had already globally installed...
Also, here is the `pyproject.toml`, I could come with. ```toml [tool.poetry] name = "auto-cpufreq" version = "2.2.0" description = "Automatic CPU speed & power optimizer for Linux" authors = ["Adnan...
> @rootCircle since you added initial support for pyproject.toml as part of https://github.com/AdnanHodzic/auto-cpufreq/pull/576 do you have any opinions on this, same thing with https://github.com/AdnanHodzic/auto-cpufreq/issues/601? I don't have much conceptual idea...
Yes, I agree. The linter should only warn when a function either: - Contains an **unconditional** panic!() - **Unconditionally** exits the program - **Unconditionally** calls a method that never returns...
> FYI, function contains infinite loop is already linted 😄 infinite_loop Thanks for pointing it out! I think that lint can be used as reference for implementing this one! Also,...
So sorry for the late reply! > Making cargo shuttle clean also clean the cargo cache might solve this, but the building process will soon be revamped anyways https://github.com/shuttle-hq/shuttle/issues/1547. Actually...