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
85b1913b
Commit
85b1913b
authored
7 months ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
v1.3.1
parent
d5f9fff7
No related branches found
Branches containing commit
Tags
v1.3.1
Tags containing commit
No related merge requests found
Pipeline
#62090
failed with stage
Stage: build
in 26 seconds
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+0
-60
0 additions, 60 deletions
.gitlab-ci.yml
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
coolamqp/objects.py
+0
-3
0 additions, 3 deletions
coolamqp/objects.py
setup.cfg
+2
-0
2 additions, 0 deletions
setup.cfg
with
3 additions
and
63 deletions
.gitlab-ci.yml
+
0
−
60
View file @
85b1913b
stages
:
-
test
-
build
pages
:
...
...
@@ -14,65 +13,6 @@ pages:
paths
:
-
public
.test
:
stage
:
test
before_script
:
-
pip install --break-system-packages --upgrade pytest setuptools pip coverage nose2
-
pip install ".[dev,test]"
script
:
-
pytest -n 8 -vv --cov=satella
-
coverage xml
-
coverage report
coverage
:
/TOTAL.*\s+(\d+\%)/
services
:
-
name
:
rabbitmq:3.13-management
alias
:
rabbitmq
test_python27
:
extends
:
.test
image
:
python:2.7
before_script
:
-
pip install --upgrade pytest setuptools pip coverage nose2
-
pip install -r requirements.txt
test_python35
:
extends
:
.test
image
:
python:3.5
before_script
:
-
pip install --upgrade pytest setuptools pip coverage nose2
-
pip install -r requirements.txt
test_python36
:
extends
:
.test
before_script
:
-
pip install --upgrade pytest setuptools pip coverage nose2
-
pip install -r requirements.txt
image
:
python:3.6
test_python37
:
extends
:
.test
image
:
python:3.7
test_python38
:
extends
:
.test
image
:
python:3.8
test_python39
:
extends
:
.test
image
:
python:3.9
test_python310
:
extends
:
.test
image
:
python:3.10
test_python311
:
extends
:
.test
image
:
python:3.11
test_python312
:
extends
:
.test
image
:
python:3.12
build_python
:
stage
:
build
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
1
−
0
View file @
85b1913b
...
...
@@ -4,5 +4,6 @@ have been made so far, between releases.
# v1.3.1
*
anonymous queues will now get CoolAMQP-made names
*
coolamqp.objects.Callable made threadsafe (fixes #22)
*
speed up (lots of if len(data) == 0 replaced with if not data)
This diff is collapsed.
Click to expand it.
coolamqp/objects.py
+
0
−
3
View file @
85b1913b
...
...
@@ -222,9 +222,6 @@ class Queue(object):
:param exchange: Exchange for this queue to bind to. None for no binding.
:param exclusive: Is this queue exclusive?
:param auto_delete: Is this queue auto_delete ?
.. warning:: Anonymous queues are not supported, because due to how CoolAMQP works there
'
s no guarantee that
they will be subscribed to over the channel that they are declared.
"""
__slots__
=
(
'
name
'
,
'
durable
'
,
'
exchange
'
,
'
auto_delete
'
,
'
exclusive
'
,
'
anonymous
'
,
'
consumer_tag
'
)
...
...
This diff is collapsed.
Click to expand it.
setup.cfg
+
2
−
0
View file @
85b1913b
...
...
@@ -11,6 +11,8 @@ classifiers =
Programming
Language :: Python :: 3.7
Programming
Language :: Python :: 3.8
Programming
Language :: Python :: 3.9
Programming
Language :: Python :: 3.10
Programming
Language :: Python :: 3.11
Programming
Language :: Python :: Implementation :: CPython
Programming
Language :: Python :: Implementation :: PyPy
Operating
System :: OS Independent
...
...
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