We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Version 11.0.0b1 release less than a day ago has a fatal bug that is very simple to reproduce.
pip install kubernetes==11.0.0b1 ipython import kubernetes
(base) ➜ kubespawner git:(master) ipython Python 3.7.3 (default, Mar 27 2019, 22:11:17) Type 'copyright', 'credits' or 'license' for more information IPython 7.6.1 -- An enhanced Interactive Python. Type '?' for help. In [1]: import kubernetes ----------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) <ipython-input-1-bd7671d07f00> in <module> ----> 1 import kubernetes ~/anaconda3/lib/python3.7/site-packages/kubernetes/__init__.py in <module> 17 __version__ = "11.0.0b1" 18 ---> 19 import kubernetes.client 20 import kubernetes.config 21 import kubernetes.watch ~/anaconda3/lib/python3.7/site-packages/kubernetes/client/__init__.py in <module> 18 19 # import apis into sdk package ---> 20 from kubernetes.client.api.admissionregistration_api import AdmissionregistrationApi 21 from kubernetes.client.api.admissionregistration_v1beta1_api import AdmissionregistrationV1beta1Api 22 from kubernetes.client.api.apiextensions_api import ApiextensionsApi ModuleNotFoundError: No module named 'kubernetes.client.api'
The text was updated successfully, but these errors were encountered:
Same error here.
Sorry, something went wrong.
This should be a P1 issue, any plan to fix this? Thanks @consideRatio
Thanks for reporting this. I've prepare a patch to fix it and for now please use the latest stable release.
This is fixed in 11.0.0b2. Thanks for reporting and fixing this!
Successfully merging a pull request may close this issue.
Version 11.0.0b1 release less than a day ago has a fatal bug that is very simple to reproduce.
GIF of error
To reproduce the error
Error logs
The text was updated successfully, but these errors were encountered: