Re: Number of Python 3.x packages at the PyPI

2008-12-08 Thread Martin v. Löwis
>> On second thought: can't you just include the source of both versions >> in a single source distribution file? > > The .tar.gz distributions are built by distutils/setuptools. If I > manually combine them into a single archive That's not what I'm proposing, though. Assuming you have two differ

Re: Number of Python 3.x packages at the PyPI

2008-12-08 Thread has
On 7 Dec, 19:53, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > > I've had to fork my appscript project's codebase in order to add > > support for Python 3.x. I would like to distribute both 2.x and 3.x > > versions under the same package name for obvious reasons. This isn't a > > problem with eggs

Re: Number of Python 3.x packages at the PyPI

2008-12-07 Thread Martin v. Löwis
> Should specifying the 3.0 tag implicity and automatically specify the > 3 tag as well? No. There is really no builtin automatic semantics to any of the classifiers. Regards, Martin -- http://mail.python.org/mailman/listinfo/python-list

Re: Number of Python 3.x packages at the PyPI

2008-12-07 Thread excord80
On Dec 7, 12:21 pm, [EMAIL PROTECTED] wrote: >     Martin>http://pypi.python.org/pypi?:action=browse&c=533 > >     Martin> It seems that some package authors only classify with > >     Martin>   Programming Language :: Python :: 3 > > I did a release for lockfile yesterday which supports 3.0.  I ad

Re: Number of Python 3.x packages at the PyPI

2008-12-07 Thread Martin v. Löwis
> I've had to fork my appscript project's codebase in order to add > support for Python 3.x. I would like to distribute both 2.x and 3.x > versions under the same package name for obvious reasons. This isn't a > problem with eggs as the Python version number is included in each > egg's name, but wh

Re: Number of Python 3.x packages at the PyPI

2008-12-07 Thread has
On 7 Dec, 09:20, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Are there any special arrangements necessary for PyPI packages which > > have both a Python 2.x version and a Python 3.x version? > > So far, no such need has been identified. I've had to fork my appscript

Re: Number of Python 3.x packages at the PyPI

2008-12-07 Thread skip
Martin> http://pypi.python.org/pypi?:action=browse&c=533 Martin> It seems that some package authors only classify with Martin> Programming Language :: Python :: 3 I did a release for lockfile yesterday which supports 3.0. I added the "Programming Language :: Python :: 3.0" tag, b

Re: Number of Python 3.x packages at the PyPI

2008-12-07 Thread Martin v. Löwis
[EMAIL PROTECTED] wrote: > Is there an easy way to see the number of PyPI packages which have > been ported to Python 3? Yes: browse all pacakges classified with Programming Language :: Python :: 3 You can find them at http://pypi.python.org/pypi?:action=browse&c=533 It seems that some pack

Number of Python 3.x packages at the PyPI

2008-12-06 Thread excord80
Is there an easy way to see the number of PyPI packages which have been ported to Python 3? Are there any special arrangements necessary for PyPI packages which have both a Python 2.x version and a Python 3.x version? -- http://mail.python.org/mailman/listinfo/python-list