if pywin32 has been manually installed, setuptools still doesn't detect it #756

Closed
opened 2009-07-12 01:21:28 +00:00 by zooko · 6 comments

If I add pywin32 to source:_auto_deps.py and install the "pywin32-214.win32-py2.5.exe" file from http://sourceforge.net/projects/pywin32/ , then the following weirdness occurs:

$ python -c 'import pkg_resources;print pkg_resources.require("pywin32")
[pywin32 214 (c:\python25\lib\site-packages)]
$ python ./setup.py build

...

error: Could not find suitable distribution for Requirement.parse('pywin32')

So, pkg_resources says it is there, but setuptools doesn't consider the requirement to be already satisfied.

Is this another instance of http://bugs.python.org/setuptools/issue17 (easy_install will install a package that is already there)?

If I add `pywin32` to source:_auto_deps.py and install the "pywin32-214.win32-py2.5.exe" file from <http://sourceforge.net/projects/pywin32/> , then the following weirdness occurs: ``` $ python -c 'import pkg_resources;print pkg_resources.require("pywin32") [pywin32 214 (c:\python25\lib\site-packages)] $ python ./setup.py build ``` ... ``` error: Could not find suitable distribution for Requirement.parse('pywin32') ``` So, pkg_resources says it is there, but setuptools doesn't consider the requirement to be already satisfied. Is this another instance of <http://bugs.python.org/setuptools/issue17> (easy_install will install a package that is already there)?
zooko added the
packaging
major
defect
1.4.1
labels 2009-07-12 01:21:28 +00:00
zooko added this to the undecided milestone 2009-07-12 01:21:28 +00:00
Author

I made a minimal version of this. Put the following into a file named setup.py in a new empty directory:

import pkg_resources
if pkg_resources.require("pywin32"):
    print "Yes, pkg_resources says that pywin32 is already installed."
from setuptools import setup
setup(name='mindeponpywin32', install_requires=['pywin32'])

Then run the following command:

$ python ./setup.py develop

It will say something like:

Yes, pkg_resources says that pywin32 is already installed.
running develop

...

Processing dependencies for mindeponpywin32==0.0.0
Searching for pywin32
Reading http://pypi.python.org/simple/pywin32/
Reading http://sf.net/projects/pywin32
Reading http://sourceforge.net/project/showfiles.php?group=78018
No local packages or download links found for pywin32
error: Could not find suitable distribution for Requirement.parse('pywin32')
I made a minimal version of this. Put the following into a file named `setup.py` in a new empty directory: ``` import pkg_resources if pkg_resources.require("pywin32"): print "Yes, pkg_resources says that pywin32 is already installed." from setuptools import setup setup(name='mindeponpywin32', install_requires=['pywin32']) ``` Then run the following command: ``` $ python ./setup.py develop ``` It will say something like: ``` Yes, pkg_resources says that pywin32 is already installed. running develop ``` ... ``` Processing dependencies for mindeponpywin32==0.0.0 Searching for pywin32 Reading http://pypi.python.org/simple/pywin32/ Reading http://sf.net/projects/pywin32 Reading http://sourceforge.net/project/showfiles.php?group=78018 No local packages or download links found for pywin32 error: Could not find suitable distribution for Requirement.parse('pywin32') ```
Author

I updated http://bugs.python.org/setuptools/issue17 (easy_install will install a package that is already there) with the minimal test case from #comment:72001.

I updated <http://bugs.python.org/setuptools/issue17> (easy_install will install a package that is already there) with the minimal test case from #[comment:72001](/tahoe-lafs/trac-2024-07-25/issues/756#issuecomment-72001).
cgalvan commented 2009-09-24 19:59:28 +00:00
Owner

Note that once #668 is resolved, switching to Distribute, this issue may or may not be resolved as a result.

Note that once #668 is resolved, switching to Distribute, this issue may or may not be resolved as a result.
Author

(http://bugs.python.org/setuptools/issue17) claims that this issue was fixed in setuptools-0.6c10. We currently have a version (variant) of setuptools which is newer than and derived from 0.6c10 in our build system so if it is true that this was fixed (and if the distribute tool that we intend to switch to soon also has the fix) then we can close this ticket.

(http://bugs.python.org/setuptools/issue17) claims that this issue was fixed in setuptools-0.6c10. We currently have a version (variant) of setuptools which is newer than and derived from 0.6c10 in our build system so if it is true that this was fixed (and if the distribute tool that we intend to switch to soon also has the fix) then we can close this ticket.
davidsarah commented 2010-11-30 23:50:27 +00:00
Owner

See also #1274 (eliminate pywin32 dependency).

See also #1274 (eliminate pywin32 dependency).
davidsarah commented 2011-07-20 21:32:52 +00:00
Owner

This is invalid given that we're about to eliminate the pywin32 dependency completely (in http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1435/dependency-updates.darcs.patch).

This is invalid given that we're about to eliminate the pywin32 dependency completely (in <http://tahoe-lafs.org/trac/tahoe-lafs/attachment/ticket/1435/dependency-updates.darcs.patch>).
tahoe-lafs added the
invalid
label 2011-07-20 21:32:52 +00:00
davidsarah closed this issue 2011-07-20 21:32:52 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#756
No description provided.