I want to make a package to depend the particular version range e.g. >= 0.5.0, < 0.7.0. Is it possible in install_requires option, and if so how should it be?
|
|
|||||
|
|
According to the documentation, your syntax should work correctly. The documentation states that:
The documentation gives a simple example like this:
To expand upon that, if you want your package to require a version of
Two additional notes.
|
|||||
|
|
Be wary of involuntary beta tests. Package maintainers sometimes release incompatible, incomplete, or broken a, b, and c releases to general audiences without warning. The next time you run setup.py in a fresh virtualenv, you might pull down one of these poisoned eggs, and suddenly your program will break. To mitigate this risk, do not use the When setuptools does something unexpected, trying using verlib to model your version comparisons. Verlib is a pretty good fit as long as your versions are normalized and non-contradictory. Here is an example that demonstrates the potentially counter-intuitive ordering of normalized versions:
|
||||
|
|