add support for OpenBSD 6.x
See original GitHub issueSpecification
- Platform: OpenBSD
- Version: 6.2, 6.3
Description
Cant install!
See this:
$ python3 -m pip install -U pywebview
Collecting pywebview
Using cached pywebview-1.8.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-dn5vt0ol/pywebview/setup.py", line 29, in <module>
extras_require=extras_require,
NameError: name 'extras_require' is not defined
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-dn5vt0ol/pywebview/
It seems necessary to modify your ‘‘setup.py’’ to add an extras as practically Linux.
We have modules python3:
- py3-gobject3
- py3-qt5
😉
Issue Analytics
- State:
- Created 5 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
OpenBSD 6.0
Support for larger bus widths, high speed modes, and DMA transfers has been added to sdmmc(4), rtsx(4), sdhc(4), and imxesdhc(4).
Read more >OpenBSD 6.1
Support for RTL8153 USB 3.0 Gigabit Ethernet based devices has been added to the ure(4) driver. Improved ACPI support for modern Apple hardware ......
Read more >OpenBSD Upgrade Guide: 5.9 to 6.0
Upgrades are only supported from one release to the release immediately following it. Read through and understand this process before attempting it.
Read more >OpenBSD 6.2
On release installs of architectures supported by syspatch, "syspatch -c" is now added to rc.firsttime. Backwards compatibility code to support ...
Read more >OpenBSD 6.6
Added support for the USB serial adapter found in Juniper SRX 300 to uslcom(4). Updated shared drm code, inteldrm(4) and radeondrm(4) to linux ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think the main issue is with the structure of the ‘extras_require’ definition: an ‘if/elif/elif’ block without an ‘else’ statement is prone to error and will break on some exotic configurations.
A simple ‘else’ statement interrupting the script execution and displaying an error like “Your system does not seem supported. Supported systems are: …” would avoid confusion.
PS: Adding OpenBSD support is a good idea anyway 😉
@shivaprsdv : not a problem! 😉 Thank you for your help 😄