etianen / aiohttp-wsgi

WSGI adapter for aiohttp.
https://aiohttp-wsgi.readthedocs.io
BSD 3-Clause "New" or "Revised" License
232 stars 20 forks source link

Please provide support for aiohttp 0.22 #8

Closed garyvdm closed 8 years ago

garyvdm commented 8 years ago

I would like to use the new testing functionality in aiohttp 0.22. But the setup.py for aiohttp-wsgi disallows it.

I ran the aiohttp-wsgi tests against aiohttp 0.22.2 and all tests passed. My application also runs correctly with aiohttp-wsgi and aiohttp 0.22.2.

What is the reason for not allowing aiohttp 0.22 in your setup.py. If you let me know, I will happily work on these issues.

etianen commented 8 years ago

The reason is simply that aiohttp has a habit of introducing breaking changes on minor version bumps. This has broken aiohttp-wsgi before.

I've just checked, and it looks like 0.22.2 runs just fine. I've just released aiohttp-wsgi 0.6.1 with the updated dependency.

garyvdm commented 8 years ago

Thank you!