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
e97e126f
Commit
e97e126f
authored
8 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
support for python 3 suspended
parent
980e464a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+0
-2
0 additions, 2 deletions
.travis.yml
README.md
+2
-2
2 additions, 2 deletions
README.md
setup.py
+2
-2
2 additions, 2 deletions
setup.py
tests/test_basics.py
+1
-1
1 addition, 1 deletion
tests/test_basics.py
with
5 additions
and
7 deletions
.travis.yml
+
0
−
2
View file @
e97e126f
language
:
python
python
:
-
"
2.7"
-
"
3.4"
-
"
3.5"
-
"
pypy"
cache
:
pip
script
:
...
...
This diff is collapsed.
Click to expand it.
README.md
+
2
−
2
View file @
e97e126f
...
...
@@ -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
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
2
View file @
e97e126f
...
...
@@ -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
'
...
...
This diff is collapsed.
Click to expand it.
tests/test_basics.py
+
1
−
1
View file @
e97e126f
...
...
@@ -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
)
...
...
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