JakobDev
JakobDev
It would be nice if cx_Freeze could support pyproject.toml. Something like this: ``` toml # All Platforms [tool.cx_Freeze] packages = ["os"] excludes = ["tkinter"] script = "my_cool_program.py" # Additional settings...
I'm unable to save arrays: ``` import nbt f = nbt.nbt.NBTFile() f.tags.append(nbt.nbt.TAG_Int_Array([1,2,3])) f.write_file("test.dat") ``` This gives me this error: ``` Traceback (most recent call last): File "", line 1, in...
It would be nice to have a URL under which you can find all badges of a specific service like we currently for categories e.g. https://shields.io/service/pypi. This would allow sites...
### Has this issue already been reported? - [X] I have searched through the existing issues. ### Is this a question rather than an issue? - [X] This is not...
I can't start the [latest Beta](https://github.com/mupen64plus/mupen64plus-core/releases/tag/2.5.9) on Ubuntu Mate 20.04. ``` jakob@PC:~/zw/m64$ uname -a Linux PC 5.4.0-28-generic #32-Ubuntu SMP Wed Apr 22 17:40:10 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux jakob@PC:~/zw/m64$...
Making a Screenshot on Linux is little bit hacky. Especially on Wayland. @radarhere tried to solve the problem in #6312 by using gnome-screenshot, but this is not a good way....
I got some free time and I was boring, so I created a Flatpak manifest for cubiomes-viewer: ```yaml app-id: com.github.cubitect.cubiomes-viewer runtime: org.kde.Platform runtime-version: "5.15-21.08" sdk: org.kde.Sdk command: cubiomes-viewer finish-args: -...
This makes it easier to parse. `pip inspect` currently shows a message, that the output may change, so I guess this is allowed. refs #11305
### What's the problem this feature will solve? Currently `project_url` in the output of `pip inspect` has this format: ```json "project_url": [ "Bug Reports, https://github.com/Ousret/charset_normalizer/issues", "Documentation, https://charset-normalizer.readthedocs.io/en/latest" ], ``` If...
### What's the problem this feature will solve? `pip inspect` currently shows all packages. If you are only intrested in one package, you don't need the full list. ### Describe...