Skip to content
Snippets Groups Projects
Commit e97e126f authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

support for python 3 suspended

parent 980e464a
No related branches found
No related tags found
No related merge requests found
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "pypy"
cache: pip
script:
......
......@@ -8,6 +8,8 @@ CoolAMQP
[![PyPI](https://img.shields.io/pypi/pyversions/CoolAMQP.svg)]()
[![PyPI](https://img.shields.io/pypi/implementation/CoolAMQP.svg)]()
**Support for Python 3 is suspended until I fix pending issues**
When you're tired of fucking with AMQP reconnects.
When a connection made by CoolAMQP to your broker fails, it will pick another
......@@ -29,8 +31,6 @@ As the project is in it's infancy stages, but actively maintained and used in a
if you need a feature - just drop me a note or create a new issue here.
Now compatible with Python 3!
todo
----
* Allow binding queues with exchanges with a routing_key
\ No newline at end of file
......@@ -20,8 +20,8 @@ setup(name='CoolAMQP',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
# 'Programming Language :: Python :: 3.4',
# 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent'
......
......@@ -24,7 +24,7 @@ class TestBasics(unittest.TestCase):
p = self.amqp.drain(wait=4)
self.assertIsInstance(p, MessageReceived)
self.assertEquals(p.message.body, b'what the fuck')
self.assertEquals(p.message.body, 'what the fuck')
p.message.ack()
self.assertIs(self.amqp.drain(wait=4), None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment