i have to make a python version upgrade at work(from 3.6 to 3.10). One of the problem i'm facing is that we have a huge requirement.txt and it not working with the new version. So how i'm suppose to also upgrade all the library in requirement.txt without breaking dependencies.
Asked
Active
Viewed 37 times
0
-
For upgrading packages, see [Upgrade python packages from requirements.txt using pip command](https://stackoverflow.com/questions/24764549/upgrade-python-packages-from-requirements-txt-using-pip-command). But if you are using a package that does not support the newer Python, there's ultimately only two options: fix the package, or use an earlier Python. – Amadan Jan 31 '22 at 10:50