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

Categories

0 votes
376 views
in Technique[技术] by (71.8m points)

setuptools - Deploy python package but not for Windows

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

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

1 Answer

0 votes
by (71.8m points)

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

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...