-
I'm the author of a library called python-statemachine. The library only optionally depends on But I'm suffering to keep working on the project in development mode if I set I develop on Python 3.12, and have a test matrix from 3.7..3.12 on GitHub as CI. Is it possible to get this? Best! PS: I currently use Poetry and considering other alternatives as I cannot figure out how to accomplish this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
if you make sure some dependencies will only be used on Python 3.8+, restrict it with environment markers:
and it can be resolved correctly. also, the new feature #2995 to be landed in the next release will also help in this case |
Beta Was this translation helpful? Give feedback.
if you make sure some dependencies will only be used on Python 3.8+, restrict it with environment markers:
and it can be resolved correctly.
also, the new feature #2995 to be landed in the next release will also help in this case