asyncz 0.13.1__tar.gz → 0.13.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 (59) hide show
  1. {asyncz-0.13.1 → asyncz-0.13.2}/PKG-INFO +5 -4
  2. {asyncz-0.13.1 → asyncz-0.13.2}/README.md +2 -2
  3. asyncz-0.13.2/asyncz/__init__.py +1 -0
  4. {asyncz-0.13.1 → asyncz-0.13.2}/pyproject.toml +2 -1
  5. asyncz-0.13.1/asyncz/__init__.py +0 -1
  6. {asyncz-0.13.1 → asyncz-0.13.2}/.gitignore +0 -0
  7. {asyncz-0.13.1 → asyncz-0.13.2}/LICENSE +0 -0
  8. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/datastructures.py +0 -0
  9. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/enums.py +0 -0
  10. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/events/__init__.py +0 -0
  11. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/events/base.py +0 -0
  12. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/events/constants.py +0 -0
  13. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/exceptions.py +0 -0
  14. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/executors/__init__.py +0 -0
  15. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/executors/asyncio.py +0 -0
  16. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/executors/base.py +0 -0
  17. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/executors/debug.py +0 -0
  18. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/executors/pool.py +0 -0
  19. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/executors/process_pool.py +0 -0
  20. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/executors/types.py +0 -0
  21. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/file_locking.py +0 -0
  22. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/locks.py +0 -0
  23. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/protocols.py +0 -0
  24. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/py.typed +0 -0
  25. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/schedulers/__init__.py +0 -0
  26. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/schedulers/asgi.py +0 -0
  27. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/schedulers/asyncio.py +0 -0
  28. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/schedulers/base.py +0 -0
  29. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/schedulers/datastructures.py +0 -0
  30. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/schedulers/defaults.py +0 -0
  31. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/schedulers/types.py +0 -0
  32. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/schedulers/utils.py +0 -0
  33. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/state.py +0 -0
  34. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/stores/__init__.py +0 -0
  35. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/stores/base.py +0 -0
  36. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/stores/file.py +0 -0
  37. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/stores/memory.py +0 -0
  38. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/stores/mongo.py +0 -0
  39. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/stores/redis.py +0 -0
  40. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/stores/sqlalchemy.py +0 -0
  41. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/stores/types.py +0 -0
  42. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/tasks/__init__.py +0 -0
  43. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/tasks/base.py +0 -0
  44. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/tasks/types.py +0 -0
  45. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/__init__.py +0 -0
  46. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/base.py +0 -0
  47. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/combination.py +0 -0
  48. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/cron/__init__.py +0 -0
  49. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/cron/constants.py +0 -0
  50. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/cron/expressions.py +0 -0
  51. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/cron/fields.py +0 -0
  52. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/cron/trigger.py +0 -0
  53. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/cron/types.py +0 -0
  54. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/date.py +0 -0
  55. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/interval.py +0 -0
  56. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/shutdown.py +0 -0
  57. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/triggers/types.py +0 -0
  58. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/typing.py +0 -0
  59. {asyncz-0.13.1 → asyncz-0.13.2}/asyncz/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: asyncz
3
- Version: 0.13.1
3
+ Version: 0.13.2
4
4
  Summary: The scheduler that nobody wants but every application needs.
5
5
  Project-URL: Homepage, https://github.com/dymmond/asyncz
6
6
  Project-URL: Documentation, https://asyncz.dymmond.com/
@@ -27,6 +27,7 @@ Classifier: Programming Language :: Python :: 3.9
27
27
  Classifier: Programming Language :: Python :: 3.10
28
28
  Classifier: Programming Language :: Python :: 3.11
29
29
  Classifier: Programming Language :: Python :: 3.12
30
+ Classifier: Programming Language :: Python :: 3.13
30
31
  Classifier: Topic :: Internet
31
32
  Classifier: Topic :: Internet :: WWW/HTTP
32
33
  Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
@@ -43,7 +44,7 @@ Requires-Dist: tzlocal; extra == 'localtime'
43
44
  Provides-Extra: loguru
44
45
  Requires-Dist: loguru<0.8.0,>=0.7.0; extra == 'loguru'
45
46
  Provides-Extra: testing
46
- Requires-Dist: esmerald; extra == 'testing'
47
+ Requires-Dist: esmerald>=3.7.5; extra == 'testing'
47
48
  Requires-Dist: httpx; extra == 'testing'
48
49
  Requires-Dist: lilya; extra == 'testing'
49
50
  Requires-Dist: loguru<0.8.0,>=0.7.0; extra == 'testing'
@@ -71,8 +72,8 @@ Description-Content-Type: text/markdown
71
72
  </p>
72
73
 
73
74
  <p align="center">
74
- <a href="https://github.com/dymmond/asyncz/workflows/Test%20Suite/badge.svg?event=push&branch=main" target="_blank">
75
- <img src="https://github.com/dymmond/asyncz/workflows/Test%20Suite/badge.svg?event=push&branch=main" alt="Test Suite">
75
+ <a href="https://github.com/dymmond/asyncz/actions/workflows/test-suite.yml/badge.svg?event=push&branch=main" target="_blank">
76
+ <img src="https://github.com/dymmond/asyncz/actions/workflows/test-suite.yml/badge.svg?event=push&branch=main" alt="Test Suite">
76
77
  </a>
77
78
 
78
79
  <a href="https://pypi.org/project/asyncz" target="_blank">
@@ -9,8 +9,8 @@
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://github.com/dymmond/asyncz/workflows/Test%20Suite/badge.svg?event=push&branch=main" target="_blank">
13
- <img src="https://github.com/dymmond/asyncz/workflows/Test%20Suite/badge.svg?event=push&branch=main" alt="Test Suite">
12
+ <a href="https://github.com/dymmond/asyncz/actions/workflows/test-suite.yml/badge.svg?event=push&branch=main" target="_blank">
13
+ <img src="https://github.com/dymmond/asyncz/actions/workflows/test-suite.yml/badge.svg?event=push&branch=main" alt="Test Suite">
14
14
  </a>
15
15
 
16
16
  <a href="https://pypi.org/project/asyncz" target="_blank">
@@ -0,0 +1 @@
1
+ __version__ = "0.13.2"
@@ -34,6 +34,7 @@ classifiers = [
34
34
  "Programming Language :: Python :: 3.10",
35
35
  "Programming Language :: Python :: 3.11",
36
36
  "Programming Language :: Python :: 3.12",
37
+ "Programming Language :: Python :: 3.13",
37
38
  "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
38
39
  "Topic :: Internet :: WWW/HTTP",
39
40
  ]
@@ -76,7 +77,7 @@ testing = [
76
77
  "pytest-loguru>=0.2.0,<1",
77
78
  "redis>=4.4.0,<6.0.0",
78
79
  "mypy>=0.982,<2.0.0",
79
- "esmerald",
80
+ "esmerald>=3.7.5",
80
81
  "starlette",
81
82
  "lilya",
82
83
  "sqlalchemy",
@@ -1 +0,0 @@
1
- __version__ = "0.13.1"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes