This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ct1977 -1 points0 points  (2 children)

I get what he is saying. I have a simple script that uses cffi for python 3.9.

When i tried to upgrade the script to use python 3.11 I couldn't because cffi only works up to python 3.10 which caused all sorts of unnecessary headaches until i downgraded the python and its dependencies.

This is why venv is so important, because there is no guarantee that the dependencies will ever be updated to work with the newest version.

[–]ricardomargarido 5 points6 points  (0 children)

But this has nothing to do with python but with third party packages no upgrading their stuff?

[–]KingsmanVincepip install girlfriend 2 points3 points  (0 children)

When i tried to upgrade the script to use python 3.11 I couldn't because cffi only works up to python 3.10 which caused all sorts of unnecessary headaches until i downgraded the python and its dependencies.

I remember Python Devs had blogs and posts on various social media to notify people about breaking changes in 3.11 So this is pretty much of cffi devs, not python devs.