-
Notifications
You must be signed in to change notification settings - Fork 903
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
[KED-2540] Why are old versions pinned in requirements.txt? #735
Comments
I'd like to use new versions of Python packages too. |
Hi @FlorianGD - this is a great point and I didn't realise lab in particular was so far behind I will add this to our backlog. If you are okay upgrading Jupyter Lab manually it would be great to know if you spot any issues? |
I've had a lot of grief with this ipython version and always update to latest, In particular there is a conflict with the latest jedi version that cause it to error or even crash when hitting tab. |
For the Kedro's requirements.txt issue, the workaround is pip install anyconfig>=0.10.0 cachetools>=4.1 click cookiecutter>=1.7.0 dynaconf>=3.1.2 fsspec>=0.5.1 gitpython>=3.0 jmespath>=0.9.5 jupyter_client>=5.1 pip-tools>=5.0 pluggy>=0.13.0 python-json-logger>=0.1.9 PyYAML>=4.2 setuptools>=38.0 toml>=0.10 toposort>=1.5
pip install --no-deps kedro Hope we won't need this workaround soon. |
OK, I will. Thanks |
@WaylonWalker do you experience any issues working with the latest iPython version? |
Looks like I need to checkout the latest (released last Friday). I have had no issues up through I have had many issues trying to mix the pinned |
I have not tested all the features extensively, but the following
As for the warning in jupyter notebooks, the below snippet gets rid of it from warnings import filterwarnings
filterwarnings("ignore", ".*`should_run_async`.*") |
Thank you @WaylonWalker and @FlorianGD I will communicate this back to the team |
Thank you @FlorianGD for raising this point! We will upgrade the pinned dependencies in the 0.17.4 release. The table below summarizes the main changes we expect:
We are keeping I will close this ticket for now, but please feel free to reach out if you feel we should still discuss this. |
Hello,
First of all, thank you for the great tool, I discovered that recently and I really like it so far.
Introduction
In the
requirements.txt
file that ships when doingkedro new
, some packages' versions are pinned, and sometimes to rather old versions. For example,jupyterlab==0.31.1
whereas the latest available version is3.0.12
Background
I want to use Kedro with the latest version of jupyter lab, especially because the UI to add a tag to a cell is much better.
Problem
My question is: why are the versions pinned, and can I update them or is it going to break Kedro internals?
Below, I took the
requirements.txt
in the template. I added comments with the latest versions in PyPI if they are excluded by the requirements.The text was updated successfully, but these errors were encountered: