mcomix
No description set
- Developed at multimedia:apps
- Sources inherited from project openSUSE:Factory
-
2
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Factory:zSystems/mcomix && cd $_ - Create Badge
Refresh
Source Files
| Filename | Size | Changed |
|---|---|---|
| mcomix-3.1.1.tar.gz | 0000669463 654 KB | |
| mcomix.changes | 0000010105 9.87 KB | |
| mcomix.spec | 0000003562 3.48 KB |
Comments 1
openSUSE Tumbleweed 20250823,
python 3.13.5,mcomix 3.1.0, raises aRuntimeErrorwhen startup:Traceback (most recent call last): File "/usr/bin/mcomix", line 7, in <module> sys.exit(main()) ~~~~^^ File "/usr/lib/python3.13/site-packages/mcomix/__main__.py", line 25, in main mp.set_start_method('spawn') ~~~~~~~~~~~~~~~~~~~^^^^^^^^^ File "/usr/lib64/python3.13/multiprocessing/context.py", line 247, in set_start_method raise RuntimeError('context has already been set')It seems that this has been fixed in latest upstream git repo but without release yet: https://sourceforge.net/p/mcomix/git/ci/a4092eb4f2927ce5d600444d0b10c308148ca34d/
By the way, for your information, I found editing
/usr/lib/python3.13/site-packages/mcomix/__main__.py, changing this:mp.set_start_method('spawn')to this:
mp.set_start_method('spawn', force=True)can also fix this issue.