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

fixed a bug while setting up connection

parent 34d38cc0
No related branches found
No related tags found
No related merge requests found
......@@ -65,14 +65,14 @@ unittest_epoll_python27:
after_script:
- mv .coverage .coverage.python27epoll
unittest_epoll:
extends: .before_test
script:
- coverage run --append -m nose2 -F -vv
after_script:
- mv .coverage .coverage.unitepoll
calc_coverage:
stage: build
......@@ -117,4 +117,3 @@ build_python:
- tags
except:
- branches
Previous release notes are hosted on [GitHub](https://github.com/smok-serwis/coolamqp/releases).
Since v1.3.2 they'll be put here and in release description.
# v1.4.0
# v1.4.1
=======
* fixed a bug while setting up connection
# v1.2.16
=========
* removed the requirement for a Queue that for it to be equal to other Queue if their types do match
* compile_definitions will now depend on requests
......
......@@ -8,11 +8,11 @@ setup(keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availabilit
install_requires=['six'],
tests_require=["pytest", "coverage"],
test_suite='nose2.collector.collector',
python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
python_requires='!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
extras_require={
':python_version == "2.7"': ['futures', 'typing', 'monotonic'],
'setproctitle': ['setproctitle'],
'opentracing': ['opentracing'],
'gevent': ['gevent']
}
'gevent': ['gevent'],
},
)
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