Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The issue is that setuptools is looking for the required packages with at least the version number specified. 9999 is greater than 2.7.2, so it tries to download the version specified in the setup.py file. </p> <p><strong>The official documentation for the install_requires keyword is <a href="http://packages.python.org/distribute/setuptools.html#declaring-dependencies" rel="nofollow">here</a></strong></p> <p><code>The simplest way to include requirement specifiers is to use the install_requires argument to setup(). It takes a string or list of strings containing requirement specifiers. If you include more than one requirement in a string, each requirement must begin on a new line.</code></p> <p><strong>A requirement specifier is described here:</strong></p> <p><code>setuptools and pkg_resources use a common syntax for specifying a project’s required dependencies. This syntax consists of a project’s PyPI name, optionally followed by a comma-separated list of “extras” in square brackets, optionally followed by a comma-separated list of version specifiers. A version specifier is one of the operators &lt;, &gt;, &lt;=, &gt;=, == or !=, followed by a version identifier. Tokens may be separated by whitespace, but any whitespace or nonstandard characters within a project name or version identifier must be replaced with -.</code></p> <p><strong>To solve your problem in particular:</strong></p> <p>Your setup.py file has</p> <pre><code>install_requires = [ ... 'python-redis-log&gt;=9999' </code></pre> <p>The version specifier you have is <code>python-redis-log&gt;=9999</code>, so your project is asking for a version number of python-redis-log that is 9999 or greater.</p> <p>If you change that line to</p> <pre><code>python-redis-log&gt;=0.1.2 </code></pre> <p>That should fix the problem. </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload