rbfly 0.9.0__tar.gz → 0.10.0.dev1__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.
Files changed (59) hide show
  1. {rbfly-0.9.0/rbfly.egg-info → rbfly-0.10.0.dev1}/PKG-INFO +3 -3
  2. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/pyproject.toml +3 -3
  3. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/_buffer.c +423 -428
  4. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/_codec.c +440 -431
  5. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/amqp/_message.c +2212 -2071
  6. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/amqp/_message.pyx +14 -2
  7. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_client.c +1070 -956
  8. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_codec.c +1385 -1355
  9. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_mqueue.c +860 -855
  10. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/client.py +1 -1
  11. {rbfly-0.9.0 → rbfly-0.10.0.dev1/rbfly.egg-info}/PKG-INFO +3 -3
  12. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly.egg-info/requires.txt +1 -1
  13. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/setup.cfg +3 -3
  14. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/COPYING +0 -0
  15. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/README +0 -0
  16. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/__init__.py +0 -0
  17. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/_buffer.pxd +0 -0
  18. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/_buffer.pyx +0 -0
  19. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/_codec.h +0 -0
  20. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/_codec.pxd +0 -0
  21. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/_codec.pyx +0 -0
  22. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/amqp/__init__.py +0 -0
  23. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/amqp/_message.pxd +0 -0
  24. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/amqp/_message.pyi +0 -0
  25. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/cm.py +0 -0
  26. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/error.py +0 -0
  27. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/py.typed +0 -0
  28. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/slotmap.py +0 -0
  29. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/__init__.py +0 -0
  30. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_client.pyi +0 -0
  31. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_client.pyx +0 -0
  32. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_codec.pyi +0 -0
  33. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_codec.pyx +0 -0
  34. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_mqueue.pxd +0 -0
  35. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_mqueue.pyi +0 -0
  36. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/_mqueue.pyx +0 -0
  37. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/codec.py +0 -0
  38. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/const.py +0 -0
  39. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/error.py +0 -0
  40. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/offset.py +0 -0
  41. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/protocol.py +0 -0
  42. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/types.py +0 -0
  43. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/streams/util.py +0 -0
  44. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/__init__.py +0 -0
  45. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/amqp/__init__.py +0 -0
  46. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/amqp/test_message.py +0 -0
  47. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/streams/__init__.py +0 -0
  48. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/streams/test_client.py +0 -0
  49. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/streams/test_codec.py +0 -0
  50. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/streams/test_mqueue.py +0 -0
  51. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/streams/test_offset.py +0 -0
  52. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/test_slotmap.py +0 -0
  53. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/tests/test_util.py +0 -0
  54. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/types.py +0 -0
  55. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly/util.py +0 -0
  56. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly.egg-info/SOURCES.txt +0 -0
  57. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly.egg-info/dependency_links.txt +0 -0
  58. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/rbfly.egg-info/top_level.txt +0 -0
  59. {rbfly-0.9.0 → rbfly-0.10.0.dev1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rbfly
3
- Version: 0.9.0
3
+ Version: 0.10.0.dev1
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,13 @@ 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
15
+ Requires-Python: >=3.11
16
16
  Description-Content-Type: text/x-rst
17
17
  License-File: COPYING
18
18
  Provides-Extra: tests
19
19
  Requires-Dist: bandit; extra == "tests"
20
20
  Requires-Dist: cython-lint; extra == "tests"
21
- Requires-Dist: mypy==1.10.1; extra == "tests"
21
+ Requires-Dist: mypy==1.11.1; extra == "tests"
22
22
  Requires-Dist: pika; extra == "tests"
23
23
  Requires-Dist: pytest-asyncio; extra == "tests"
24
24
  Requires-Dist: pytest-cov; extra == "tests"
@@ -3,7 +3,7 @@ requires = [
3
3
  "build",
4
4
  "setuptools",
5
5
  "wheel",
6
- "cython==3.0.10",
6
+ "cython==3.0.11",
7
7
  ]
8
8
  build-backend = "setuptools.build_meta"
9
9
 
@@ -14,12 +14,12 @@ strict = true
14
14
  skips = ["B101"]
15
15
 
16
16
  [tool.pytest.ini_options]
17
- addopts = "-v --cov rbfly"
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 = 67
22
+ fail_under = 68
23
23
  omit = ["rbfly/tests/*"]
24
24
 
25
25
  [tool.ruff]