#21 fails to install on Windows
Closed: Insufficient data by bignose. Opened by danizen.

Behavior

Version 2.2.0 does not install properly on windows, because building of the wheel from tarball fails as pwd is not defined on windows.

Desired behavior

I understand that it may not work properly, but packages that sort of work on Windows, such as luigi, depend on python-daemon. I want it to successfully build as a wheel, even if it is not fully supported. If a warning is generated during installation, that would be fine.

Something like this should work:

try:
    import pwd
except ImportError:
    import winpwd as pwd

I'm not sure whether this would break the build to wheel, but it is worth a try:

    raise ImportWarning('Windows is not fully supported')

I want it to successfully build as a wheel, even if it is not fully supported.

The current versions on PyPI now have a wheel package available (this was an oversight in earlier versions).

Does the availability of a wheel package resolve this bug report? Or is there something I have misunderstood about this report?

Metadata Update from @bignose:
- Issue tagged with: moreinfo

Thanks for the report. I am closing this in the absence of more information.

Please feel free to open a new issue if the questions above can be answered.

Metadata Update from @bignose:
- Issue close_status updated to: Fixed
- Issue status updated to: Closed (was: Open)

Metadata Update from @bignose:
- Issue status updated to: Open (was: Closed)

Metadata Update from @bignose:
- Issue close_status updated to: Insufficient data
- Issue status updated to: Closed (was: Open)

Metadata