Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'd like to release a version 2 of my python project to pypi but it is not Windows compatible. The v1 is already on pypi and supports all OSes.

Is it possible to specify in the setup.py that this new release is not available on Windows ?

In other word, all I want is pip install my-pkg to install:

  • v2 on Linux and Mac
  • v1 on Windows

Thanks you!

question from:https://stackoverflow.com/questions/65849462/deploy-python-package-but-not-for-windows

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
401 views
Welcome To Ask or Share your Answers For Others

1 Answer

You will have to write clear documentation to instruct your Windows users to call:

python -m  pip install 'my-pkg<2'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...