Thanks for all your hard work, Victor!

For everyone considering this download, the separate asyncio releases are
really only useful for Python 3.3 users -- Python 3.4 users already have
the latest asyncio in the standard library.

For Python 2 users, Victor's to modest to mention it in the same post, but
his Trollius module is an adaptation of asyncio (mainly using yield instead
of yield from) that runs on anything from Python 2.7 to Python 3.5. Check
here: https://pypi.python.org/pypi/trollius

More of Victor's great porting and adaptation work (and that of many other
contributors!) is on the Tulip wiki:
https://code.google.com/p/tulip/wiki/ThirdParty

On Thu, Dec 18, 2014 at 4:11 AM, Victor Stinner <[email protected]>
wrote:
>
> Hi,
>
> Two months after the release of Python 3.4.2, I just released asyncio
> 3.4.2. Guido von Rossum allowed me to upload to the asyncio project at
> PyPI.
>
> asyncio 3.4.2 is based on the tag 3.4.2 (hash 7c85dd9f8f6e), it should
> contain the same code than the asyncio module of Python 3.4.2.
>
> By the way, I added asyncio/test_support.py in the Tulip project, so
> it becomes much easier to test Tulip, without having to get the test
> module from CPython source code.
>
> I wrote a release.py script to build wheel packages on Windows. The
> script builds the _overlapped module and run unit tests, try to build
> wheel packages. If everything is fine, the script rebuild wheel
> packages and upload them.
>
> I also add tox.ini to be able to test Tulip using tox. This tool
> installs dependencies (aiotest) and set environment variables
> (PYTHONASYNCIODEBUG). It's easier to use it than running tests
> manually.
>
> Sorry, I uploaded asyncio 3.4.3 by mistake. I removed it. I also
> removed wheel packages of asyncio 3.4.1 by mistake :-/ I rebuilt and
> uploaded them again (using the tag 3.4.1).
>
> I also documented the release process in setup.py (in a comment).
>
> I hope that the next release will be done with less mistakes. I hope
> that release.py and tox will help for the release process.
>
> Victor
>


-- 
--Guido van Rossum (python.org/~guido)

Reply via email to