Replies: 1 comment 1 reply
-
We have to implement explicit support for every new Python version. We can not remove the upper bound. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using python poetry to install my required dependency i a huge framework with a lot of different github repositories.
All of them using a .toml file with the entry python = ^3.10.
The installation of the poetry env fails due to the fact that pythonnet requires-python = ">=3.7, <3.14". What is the reason to have this upper limit?
Is there a way to remove it?
Otherwise and maybe also other users have to limit the python version in all used .toml files. Maybe also in Github repos which are not under their control.
Thanks for your answer!
Beta Was this translation helpful? Give feedback.
All reactions