Message9713

Author zyasoft
Recipients Each, zyasoft
Date 2015-03-26.21:36:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427405813.89.0.178045925659.issue2298@psf.upfronthosting.co.za>
In-reply-to
Content
I have tried this out, and it does not work per Aleksei's report:

#!C:\jythondev\jython27\dist\bin\jython.exe
# EASY-INSTALL-ENTRY-SCRIPT: 'yolk==0.4.3','console_scripts','yolk'
__requires__ = 'yolk==0.4.3'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('yolk==0.4.3', 'console_scripts', 'yolk')()
    )

(It has to be a self executing zip archive to work on Windows.)

Nose, for example, does install correctly on Windows. Different code path presumably.

I have done some work here in the forked versions of pip used by Jython in https://github.com/jythontools/ If you have a patch you would like to contribute against setuptools, that would be useful and you post here.

Next step, we should create a fork of https://bitbucket.org/pypa/setuptools in https://github.com/jythontools/setuptools, which we will bundle as part of the ensurepip bundle; then we can apply, with the eventual goal of upstreaming. (This is very very slow, even for simple stuff.)
History
Date User Action Args
2015-03-26 21:36:53zyasoftsetmessageid: <1427405813.89.0.178045925659.issue2298@psf.upfronthosting.co.za>
2015-03-26 21:36:53zyasoftsetrecipients: + zyasoft, Each
2015-03-26 21:36:53zyasoftlinkissue2298 messages
2015-03-26 21:36:53zyasoftcreate