diff --git a/.travis.yml b/.travis.yml index 95b2e309a7607b0f16dbb97e23e56e857c87949f..f6c21a9865b5f6f35d9b331d3a1892661aaa8948 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ language: python python: - "2.7" - - "3.4" - - "3.5" - "pypy" cache: pip script: diff --git a/README.md b/README.md index c6fc9face0dc5156206418da1277fc75476da09d..76408410831e4ad36bd31f2bc9010b560171538b 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ CoolAMQP []() []() +**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 diff --git a/setup.py b/setup.py index b3da1879fc12eeab52665da9b6a8922dd7a517c2..4d20552ef685979b063fd2ef6c50603a3e0cffac 100644 --- a/setup.py +++ b/setup.py @@ -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' diff --git a/tests/test_basics.py b/tests/test_basics.py index 623ed3b702c8e4310dfc0212596af666d118b14b..750d1643769689ee9f73e201059d6b893cc662bc 100644 --- a/tests/test_basics.py +++ b/tests/test_basics.py @@ -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)