-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Support Python 3.9 #16611
Comments
Python 3.9 support |
Also, the first beta release of Python 3.10 is coming at the beginning of May. |
in azure cli pip --version is 3.9 but finction app version is 3.10 getting the http 500 error , and will check in the logs request module not found already we called latest version request module in requirements.txt, is it related to python version issue? |
@Umamahesh888 I don't get it, could you please provide more details? You can create a new issue if you like. |
Is your feature request related to a problem? Please describe.
Currently Azure CLI can't be installed on Python 3.9, causing different errors on different platforms.
For example, on Windows
This is because older versions of bcrypt, cryptography, PyNaCl don't distribute wheels for Python 3.9. For example, cryptography 2.9.2 only distributes
cryptography-2.9.2-cp38-cp38-win_amd64.whl
.Users will have to either
Describe the solution you'd like
The latest versions of bcrypt, cryptography, PyNaCl all use Stable Application Binary Interface (
*-cp36-abi3-win_amd64.whl
) to build wheels so that they can be installed on Python 3.9 without building source code.Azure CLI should support Python 3.9 by bumping these dependencies:
The text was updated successfully, but these errors were encountered: