Egg file generated by easy-install works for multiple python versions #4114
-
Hi, if I used the python 3.9.5 to run the script that includes: if I change the name of the egg file to "mypack-1.0.0-py3.10.egg" or "mypack-1.0.0-py3.11.egg" then it works when i run that script with python3.10 or python3.11 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Why are you working with egg files? They've been deprecated for years. You should now be using wheels, which do work with multiple Python versions (assuming pure Python with no compiled extensions). |
Beta Was this translation helpful? Give feedback.
-
As pointed by @jwodder So I guess the answer for your question would be "No". |
Beta Was this translation helpful? Give feedback.
-
Thank you, guys, Actually, i am using the paf repo https://github.com/Ericsson/paf for my project, so i followed the installation of README file and facing the issue as above. I will try with the way you suggest! |
Beta Was this translation helpful? Give feedback.
Why are you working with egg files? They've been deprecated for years. You should now be using wheels, which do work with multiple Python versions (assuming pure Python with no compiled extensions).