-
-
Notifications
You must be signed in to change notification settings - Fork 594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
demjson dependance breaks install #5
Comments
Yes, this dependency should be removed. Unfortunately it comes from JustPy. So we can not do anything but wait for @elimintz to fix justpy-org/justpy#301. |
I need to find time to release a new version with this. There is a demjson compatible package called demjson3 that solves this issue. If you want to fix it locally, change all |
it is also not installable with python 3.9.9, it will output this error:
on python 3.8 it is installable. |
You can try downgrading setuptools to 57.4.0. This is what we do in our continuous testing script: nicegui/.github/workflows/test.yml Line 25 in 12f3918
|
this workaround solves the issue. thanks! :) |
Version 0.2.3 of justpy which I released a few days ago should solve this problem. demjson was replaced with demjson3 so things should work fine now also without the workaround. Please let me know if this is not the case. |
With release 0.7.6 we upgraded to JustPy 0.2.3. @elimintz thanks for fixing this dependency. |
From Python 3.10, the dependent JSON package demjson fails to install.
Since stock JSON package exists and maintenance of dependent package is problematic (dmeranda/demjson#40) changing from demjson to builtin JSON would be favorable.
The text was updated successfully, but these errors were encountered: