From: Ian C. <gra...@gm...> - 2015-03-26 23:45:29
|
On Thu, Mar 26, 2015 at 6:34 PM, Oleg Broytman <ph...@ph...> wrote: > On Fri, Mar 27, 2015 at 12:05:53AM +0100, Oleg Broytman <ph...@ph...> > wrote: > > On Thu, Mar 26, 2015 at 05:53:19PM -0500, Ian Cordasco < > gra...@gm...> wrote: > > > > > On 26 March 2015 at 21:33, Oleg Broytman <ph...@ph...> wrote: > > > > > > Hi! All tests are green. What's next? > > > > > An alpha release might help us get some beta testers. Maybe create a > > > 3.0.0a1 that people can then pip install? > > > > Nice idea, will do it! > > Sorry, I was too haste. I need python 3.4 on my system to release > SQLObject for Python 3 ;-) so I have to update my stable Debian to > testing. I wanted to do that anyway so I hope to upgrade at the weekend. > > Oleg. > -- > Oleg Broytman http://phdru.name/ ph...@ph... > Programmers don't die, they just GOSUB without RETURN. > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, > sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for > all > things parallel software development, from weekly thought leadership blogs > to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > sqlobject-discuss mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sqlobject-discuss > You don't need Python 3 to release it. You just need to make sure that the correct classifier is there (not that pip cares) and then do a `python setup.py sdist`. If you want to release a wheel, you can do `python setup.py bdist_wheel --universal` to signal that it works on Python 2 and Python 3. (That can be done from either Python 2 or Python 3 so you don't need 3.4 installed.) Cheers, Ian |