Replies: 1 comment 3 replies
-
rye supports custom environment markers like python_version etc, they need to be written into the pyproject.toml directly (using rye add). For example like this: dependencies = [
"tomli>=2.0.1; python_version < '3.11'",
] Any more details on what exactly you can do with pdm and what it looks like? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I maintain a Python package that has dependency conflicts for Python>=3.12, but those can be solved using custom dependency constraints or enforce custom dependency resolution, which I could do with PDM.
Is it possible to that with Rye? I could not find a similar issue or help in the docs.
Beta Was this translation helpful? Give feedback.
All reactions