Now depends on anyjson 0.3.1 for the cjson deprecation

This commit is contained in:
Ask Solem 2011-03-28 14:42:38 +02:00
parent 59a06d25bc
commit af4339170d
4 changed files with 8 additions and 3 deletions

View File

@ -6,6 +6,11 @@
=====
:release-date: 2011-03-28 16:00 P.M CEST
* Now depends on anyjson 0.3.1
cjson is no longer a recommended json implementation, and anyjson
will now emit a deprecation warning if used.
* Please note that the Pika backend only works with version 0.5.2.
The latest version (0.9.x) drastically changed API, and it is not

View File

@ -1,2 +1,2 @@
anyjson
anyjson>=0.3.1
amqplib>=0.6

View File

@ -24,5 +24,5 @@ upload-dir = docs/.build/html
[bdist_rpm]
requires = anyjson
requires = anyjson >= 0.3.1
amqplib >= 0.6

View File

@ -89,7 +89,7 @@ setup(
zip_safe=False,
test_suite="nose.collector",
install_requires=[
'anyjson',
'anyjson>=0.3.1',
'amqplib>=0.6',
],
tests_require=tests_require,