Python 3.9 support #1698
-
How can i update mu 1.0.3 python version to 3.9? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
At the moment Mu is not compatible with Python 3.9 due to some dependencies having issues in some platforms. You can run Mu from source code, and with a small code change, enable 3.9 as a compatible version. So at that point, whatever version of Python you use to You can follow the dev instructions here to learn how to run Mu from source code: https://mu.readthedocs.io/en/latest/setup.html And to enable Python 3.9 compatibility you can apply this patch: fa9fa19 |
Beta Was this translation helpful? Give feedback.
At the moment Mu is not compatible with Python 3.9 due to some dependencies having issues in some platforms.
You can run Mu from source code, and with a small code change, enable 3.9 as a compatible version. So at that point, whatever version of Python you use to
pip install -e ."[dev]"
will be the version of Python running Mu (in contrast, the installer package their own Python interpreter).You can follow the dev instructions here to learn how to run Mu from source code: https://mu.readthedocs.io/en/latest/setup.html
And to enable Python 3.9 compatibility you can apply this patch: fa9fa19