Skip to content

Commit

Permalink
update pika
Browse files Browse the repository at this point in the history
Official python3.7 compatibility in 1.0

https://pika.readthedocs.io/en/stable/version_history.html
  • Loading branch information
vdloo committed Oct 25, 2019
1 parent 2e3a788 commit 04daffb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pika==0.13.1
pika==1.1.0
mock==1.3.0
nose==1.3.7
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def readfile(filename):

setup(
name='eventsender',
version='1.1.1',
version='1.1.2',
packages=find_packages(exclude=['tests*']),
url='https://github.com/ByteInternet/eventsender',
author='Byte B.V.',
Expand All @@ -27,10 +27,14 @@ def readfile(filename):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='amqp rabbitmq events eventsender',
description='RabbitMQ event sender',
long_description=readfile('README.rst'),
long_description_content_type='text/x-rst',
install_requires=['pika==0.13.0'],
install_requires=['pika==1.1.1'],
)

0 comments on commit 04daffb

Please sign in to comment.