Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coolamqp
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
coolamqp
Commits
f543b050
Commit
f543b050
authored
8 months ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
fixed a bug while setting up connection
parent
34d38cc0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+2
-3
2 additions, 3 deletions
.gitlab-ci.yml
CHANGELOG.md
+7
-1
7 additions, 1 deletion
CHANGELOG.md
setup.py
+3
-3
3 additions, 3 deletions
setup.py
with
12 additions
and
7 deletions
.gitlab-ci.yml
+
2
−
3
View file @
f543b050
...
...
@@ -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
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
7
−
1
View file @
f543b050
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
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
3
−
3
View file @
f543b050
...
...
@@ -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
'
]
,
}
,
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment