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

v1.3.1

parent d5f9fff7
No related branches found
Tags v1.3.1
No related merge requests found
Pipeline #62090 failed with stage
in 26 seconds
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
......
......@@ -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)
......@@ -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')
......
......@@ -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
......
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