I think you are missing the dependency on the png package. $ qrcode --output ~/Downloads/cow.png http://www.google.com Traceback (most recent call last): File "/usr/bin/qrcode", line 8, in <module> sys.exit(main()) ^^^^^^ File "/usr/lib/python3.12/site-packages/qrcode/console_scripts.py", line 113, in main img = qr.make_image() ^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/qrcode/main.py", line 365, in make_image from qrcode.image.pure import PyPNGImage File "/usr/lib/python3.12/site-packages/qrcode/image/pure.py", line 3, in <module> import png ModuleNotFoundError: No module named 'png' Reproducible: Always Steps to Reproduce: 1. dnf install python-qrcode 2. qrcode --output ~/Downloads/cow.png http://www.google.com 3. Actual Results: Traceback (most recent call last): File "/usr/bin/qrcode", line 8, in <module> sys.exit(main()) ^^^^^^ File "/usr/lib/python3.12/site-packages/qrcode/console_scripts.py", line 113, in main img = qr.make_image() ^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/qrcode/main.py", line 365, in make_image from qrcode.image.pure import PyPNGImage File "/usr/lib/python3.12/site-packages/qrcode/image/pure.py", line 3, in <module> import png ModuleNotFoundError: No module named 'png' Expected Results: new png
FEDORA-2024-3a8d53c92c (python-qrcode-7.4.2-12.fc39) has been submitted as an update to Fedora 39. https://bodhi.fedoraproject.org/updates/FEDORA-2024-3a8d53c92c
FEDORA-2024-cbbf86a8e3 (python-qrcode-7.4.2-12.fc40) has been submitted as an update to Fedora 40. https://bodhi.fedoraproject.org/updates/FEDORA-2024-cbbf86a8e3
FEDORA-2024-cbbf86a8e3 has been pushed to the Fedora 40 testing repository. Soon you'll be able to install the update with the following command: `sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2024-cbbf86a8e3` You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2024-cbbf86a8e3 See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.
FEDORA-2024-3a8d53c92c has been pushed to the Fedora 39 testing repository. Soon you'll be able to install the update with the following command: `sudo dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2024-3a8d53c92c` You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2024-3a8d53c92c See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information on how to test updates.
FEDORA-2024-3a8d53c92c (python-qrcode-7.4.2-12.fc39) has been pushed to the Fedora 39 stable repository. If problem still persists, please make note of it in this bug report.
FEDORA-2024-cbbf86a8e3 (python-qrcode-7.4.2-12.fc40) has been pushed to the Fedora 40 stable repository. If problem still persists, please make note of it in this bug report.
As far as I can tell this dep is still missing? ``` $ dnf repoquery --releasever 39 --requires python3-qrcode-0:7.4.2-12.fc39.noarch Last metadata expiration check: 0:29:17 ago on Fri 30 Aug 2024 10:52:04 AM EDT. /usr/bin/python3 python(abi) = 3.12 python3.12dist(typing-extensions) $ dnf repoquery --releasever 40 --requires python3-qrcode-0:7.4.2-12.fc40.noarch Last metadata expiration check: 0:05:52 ago on Fri 30 Aug 2024 11:22:42 AM EDT. /usr/bin/python3 python(abi) = 3.12 python3.12dist(typing-extensions) ```