I want to use several environments markers for pywin32
, and I cannot figure out a way to combine them. Individually it works, but not together:
pywin32==228;{python_version<'3', platform_system=='Windows'}
pywin32;{python_version>='3', platform_system=='Windows'}
So:
pywin32==228;python_version<'3'
pywin32;python_version>='3'
Works fine, and same for platform_system
alone, but I cannot get to combine the two. I already tried several options and can't find someone who ran into the same issue.
What should I do ?
question from:
https://stackoverflow.com/questions/66051335/pip-uses-several-environment-markers-for-a-single-package 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…