rbfly 0.9.0__tar.gz → 0.10.0.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rbfly-0.9.0/rbfly.egg-info → rbfly-0.10.0.dev2}/PKG-INFO +3 -4
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/pyproject.toml +4 -3
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/_buffer.c +423 -428
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/_codec.c +440 -431
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/amqp/_message.c +2212 -2071
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/amqp/_message.pyx +14 -2
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_client.c +1070 -956
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_codec.c +1385 -1355
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_mqueue.c +860 -855
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/client.py +1 -1
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/protocol.py +7 -3
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/amqp/test_message.py +2 -2
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/streams/test_codec.py +1 -2
- {rbfly-0.9.0 → rbfly-0.10.0.dev2/rbfly.egg-info}/PKG-INFO +3 -4
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly.egg-info/requires.txt +2 -2
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/setup.cfg +3 -4
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/COPYING +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/README +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/__init__.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/_buffer.pxd +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/_buffer.pyx +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/_codec.h +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/_codec.pxd +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/_codec.pyx +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/amqp/__init__.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/amqp/_message.pxd +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/amqp/_message.pyi +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/cm.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/error.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/py.typed +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/slotmap.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/__init__.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_client.pyi +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_client.pyx +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_codec.pyi +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_codec.pyx +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_mqueue.pxd +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_mqueue.pyi +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/_mqueue.pyx +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/codec.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/const.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/error.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/offset.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/types.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/streams/util.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/__init__.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/amqp/__init__.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/streams/__init__.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/streams/test_client.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/streams/test_mqueue.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/streams/test_offset.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/test_slotmap.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/tests/test_util.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/types.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly/util.py +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly.egg-info/SOURCES.txt +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly.egg-info/dependency_links.txt +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/rbfly.egg-info/top_level.txt +0 -0
- {rbfly-0.9.0 → rbfly-0.10.0.dev2}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: rbfly
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0.dev2
|
|
4
4
|
Summary: RbFly - a library for RabbitMQ Streams using Python asyncio
|
|
5
5
|
Home-page: https://wrobell.dcmod.org/rbfly/
|
|
6
6
|
Author: Artur Wroblewski
|
|
@@ -12,13 +12,12 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
12
12
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
14
|
Classifier: Development Status :: 4 - Beta
|
|
15
|
-
Requires-Python: >=3.10
|
|
16
15
|
Description-Content-Type: text/x-rst
|
|
17
16
|
License-File: COPYING
|
|
18
17
|
Provides-Extra: tests
|
|
19
18
|
Requires-Dist: bandit; extra == "tests"
|
|
20
19
|
Requires-Dist: cython-lint; extra == "tests"
|
|
21
|
-
Requires-Dist: mypy==1.
|
|
20
|
+
Requires-Dist: mypy==1.11.2; extra == "tests"
|
|
22
21
|
Requires-Dist: pika; extra == "tests"
|
|
23
22
|
Requires-Dist: pytest-asyncio; extra == "tests"
|
|
24
23
|
Requires-Dist: pytest-cov; extra == "tests"
|
|
@@ -30,7 +29,7 @@ Requires-Dist: uvloop>=0.19.0; extra == "tests"
|
|
|
30
29
|
Provides-Extra: performance
|
|
31
30
|
Requires-Dist: msgpack; extra == "performance"
|
|
32
31
|
Requires-Dist: aiokafka==0.8.1; extra == "performance"
|
|
33
|
-
Requires-Dist: rstream==0.
|
|
32
|
+
Requires-Dist: rstream==0.20.3; extra == "performance"
|
|
34
33
|
Requires-Dist: uamqp==1.6.9; extra == "performance"
|
|
35
34
|
Requires-Dist: python-qpid-proton==0.39.0; extra == "performance"
|
|
36
35
|
Provides-Extra: doc
|
|
@@ -3,7 +3,7 @@ requires = [
|
|
|
3
3
|
"build",
|
|
4
4
|
"setuptools",
|
|
5
5
|
"wheel",
|
|
6
|
-
"cython==3.0.
|
|
6
|
+
"cython==3.0.11",
|
|
7
7
|
]
|
|
8
8
|
build-backend = "setuptools.build_meta"
|
|
9
9
|
|
|
@@ -14,18 +14,19 @@ strict = true
|
|
|
14
14
|
skips = ["B101"]
|
|
15
15
|
|
|
16
16
|
[tool.pytest.ini_options]
|
|
17
|
-
addopts =
|
|
17
|
+
addopts = '--log-level=debug --doctest-modules -vv --cov rbfly --cov-config pyproject.toml --cov-report=term-missing rbfly'
|
|
18
18
|
testpaths = ["rbfly/tests"]
|
|
19
19
|
|
|
20
20
|
[tool.coverage.report]
|
|
21
21
|
show_missing = true
|
|
22
|
-
fail_under =
|
|
22
|
+
fail_under = 68
|
|
23
23
|
omit = ["rbfly/tests/*"]
|
|
24
24
|
|
|
25
25
|
[tool.ruff]
|
|
26
26
|
lint.select = ['F', 'N', 'E', 'W', 'PL', 'C90', 'RUF', 'SLF', 'UP']
|
|
27
27
|
# drop from ignore: PLR2004, E501
|
|
28
28
|
lint.ignore = ['E731', 'PLR2004', 'E501', 'UP032', 'E721']
|
|
29
|
+
target-version = "py311"
|
|
29
30
|
|
|
30
31
|
[tool.cython-lint]
|
|
31
32
|
ignore = ['E252', 'E302', 'E305']
|