asyncly 0.6.0__tar.gz → 0.6.2__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 (49) hide show
  1. {asyncly-0.6.0 → asyncly-0.6.2}/PKG-INFO +2 -2
  2. {asyncly-0.6.0 → asyncly-0.6.2}/pyproject.toml +2 -2
  3. {asyncly-0.6.0 → asyncly-0.6.2}/.gitignore +0 -0
  4. {asyncly-0.6.0 → asyncly-0.6.2}/README.rst +0 -0
  5. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/__init__.py +0 -0
  6. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/__init__.py +0 -0
  7. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/base.py +0 -0
  8. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/handlers/__init__.py +0 -0
  9. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/handlers/base.py +0 -0
  10. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/handlers/exceptions.py +0 -0
  11. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/handlers/json.py +0 -0
  12. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/handlers/msgspec.py +0 -0
  13. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/handlers/pydantic.py +0 -0
  14. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/metrics/__init__.py +0 -0
  15. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/metrics/instrumentable_client.py +0 -0
  16. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/metrics/route_resolver.py +0 -0
  17. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/metrics/sinks/__init__.py +0 -0
  18. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/metrics/sinks/base.py +0 -0
  19. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/metrics/sinks/noop.py +0 -0
  20. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/metrics/sinks/opentelemetry.py +0 -0
  21. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/metrics/sinks/prometheus.py +0 -0
  22. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/timeout.py +0 -0
  23. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/client/typing.py +0 -0
  24. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/py.typed +0 -0
  25. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/pytest_plugin.py +0 -0
  26. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/__init__.py +0 -0
  27. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/assertions.py +0 -0
  28. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/constants.py +0 -0
  29. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/exceptions.py +0 -0
  30. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/handlers.py +0 -0
  31. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/matching.py +0 -0
  32. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/models.py +0 -0
  33. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/__init__.py +0 -0
  34. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/base.py +0 -0
  35. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/content.py +0 -0
  36. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/json.py +0 -0
  37. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/msgpack.py +0 -0
  38. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/raw.py +0 -0
  39. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/sequence.py +0 -0
  40. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/timeout.py +0 -0
  41. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/toml.py +0 -0
  42. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/responses/yaml.py +0 -0
  43. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/serialization/__init__.py +0 -0
  44. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/serialization/base.py +0 -0
  45. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/serialization/json.py +0 -0
  46. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/serialization/msgpack.py +0 -0
  47. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/serialization/toml.py +0 -0
  48. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/serialization/yaml.py +0 -0
  49. {asyncly-0.6.0 → asyncly-0.6.2}/asyncly/srvmocker/service.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: asyncly
3
- Version: 0.6.0
3
+ Version: 0.6.2
4
4
  Summary: Simple HTTP client and server for your integrations based on aiohttp
5
5
  Project-URL: Homepage, https://github.com/andy-takker/asyncly
6
6
  Project-URL: Source, https://github.com/andy-takker/asyncly
@@ -29,7 +29,7 @@ Classifier: Topic :: Software Development
29
29
  Classifier: Topic :: Software Development :: Libraries
30
30
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
31
31
  Requires-Python: <4,>=3.10
32
- Requires-Dist: aiohttp<4,>=3.9.5
32
+ Requires-Dist: aiohttp<4,>=3.13.3
33
33
  Provides-Extra: msgspec
34
34
  Requires-Dist: msgspec<0.20,>=0.19.0; extra == 'msgspec'
35
35
  Provides-Extra: opentelemetry
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "asyncly"
3
- version = "0.6.0"
3
+ version = "0.6.2"
4
4
  description = "Simple HTTP client and server for your integrations based on aiohttp"
5
5
  authors = [{ name = "Sergey Natalenko", email = "sergey.natalenko@mail.ru" }]
6
6
  requires-python = ">=3.10, <4"
@@ -33,7 +33,7 @@ classifiers = [
33
33
  "Topic :: Software Development :: Libraries",
34
34
  "Topic :: Software Development",
35
35
  ]
36
- dependencies = ["aiohttp>=3.9.5,<4"]
36
+ dependencies = ["aiohttp>=3.13.3,<4"]
37
37
 
38
38
  [project.optional-dependencies]
39
39
  msgspec = ["msgspec>=0.19.0,<0.20"]
File without changes
File without changes
File without changes
File without changes
File without changes