Replies: 1 comment
-
+1 for this naming convention For multiple environments |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to create and use one virtualenv per Python version?
Currently, if I change my toolchain pin and run
rye sync
, it recreates the venv from scratch. That means that if I want to runpytest
on multiple Python versions, Rye will recreate the venv and reinstall all dependencies each time. I don't use tox or nox.Ideally I'd like an option to tell Rye to suffix the venv name with
{major}{minor}
.Example:
I could then run my tests suite on all supported Python versions:
Beta Was this translation helpful? Give feedback.
All reactions