duty 1.6.1__tar.gz → 1.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 (130) hide show
  1. {duty-1.6.1 → duty-1.6.2}/CHANGELOG.md +8 -0
  2. {duty-1.6.1 → duty-1.6.2}/PKG-INFO +2 -2
  3. {duty-1.6.1 → duty-1.6.2}/pyproject.toml +2 -2
  4. {duty-1.6.1 → duty-1.6.2}/CODE_OF_CONDUCT.md +0 -0
  5. {duty-1.6.1 → duty-1.6.2}/CONTRIBUTING.md +0 -0
  6. {duty-1.6.1 → duty-1.6.2}/LICENSE +0 -0
  7. {duty-1.6.1 → duty-1.6.2}/README.md +0 -0
  8. {duty-1.6.1 → duty-1.6.2}/config/coverage.ini +0 -0
  9. {duty-1.6.1 → duty-1.6.2}/config/git-changelog.toml +0 -0
  10. {duty-1.6.1 → duty-1.6.2}/config/mypy.ini +0 -0
  11. {duty-1.6.1 → duty-1.6.2}/config/pytest.ini +0 -0
  12. {duty-1.6.1 → duty-1.6.2}/config/ruff.toml +0 -0
  13. {duty-1.6.1 → duty-1.6.2}/config/vscode/launch.json +0 -0
  14. {duty-1.6.1 → duty-1.6.2}/config/vscode/settings.json +0 -0
  15. {duty-1.6.1 → duty-1.6.2}/config/vscode/tasks.json +0 -0
  16. {duty-1.6.1 → duty-1.6.2}/docs/.overrides/main.html +0 -0
  17. {duty-1.6.1 → duty-1.6.2}/docs/.overrides/partials/comments.html +0 -0
  18. {duty-1.6.1 → duty-1.6.2}/docs/.overrides/partials/path-item.html +0 -0
  19. {duty-1.6.1 → duty-1.6.2}/docs/changelog.md +0 -0
  20. {duty-1.6.1 → duty-1.6.2}/docs/code_of_conduct.md +0 -0
  21. {duty-1.6.1 → duty-1.6.2}/docs/contributing.md +0 -0
  22. {duty-1.6.1 → duty-1.6.2}/docs/credits.md +0 -0
  23. {duty-1.6.1 → duty-1.6.2}/docs/css/material.css +0 -0
  24. {duty-1.6.1 → duty-1.6.2}/docs/css/mkdocstrings.css +0 -0
  25. {duty-1.6.1 → duty-1.6.2}/docs/demo.svg +0 -0
  26. {duty-1.6.1 → duty-1.6.2}/docs/gen_credits.py +0 -0
  27. {duty-1.6.1 → duty-1.6.2}/docs/index.md +0 -0
  28. {duty-1.6.1 → duty-1.6.2}/docs/js/feedback.js +0 -0
  29. {duty-1.6.1 → duty-1.6.2}/docs/license.md +0 -0
  30. {duty-1.6.1 → duty-1.6.2}/docs/reference/api.md +0 -0
  31. {duty-1.6.1 → duty-1.6.2}/docs/usage.md +0 -0
  32. {duty-1.6.1 → duty-1.6.2}/duties.py +0 -0
  33. {duty-1.6.1 → duty-1.6.2}/mkdocs.yml +0 -0
  34. {duty-1.6.1 → duty-1.6.2}/scripts/gen_credits.py +0 -0
  35. {duty-1.6.1 → duty-1.6.2}/scripts/get_version.py +0 -0
  36. {duty-1.6.1 → duty-1.6.2}/scripts/make +0 -0
  37. {duty-1.6.1 → duty-1.6.2}/scripts/make.py +0 -0
  38. {duty-1.6.1 → duty-1.6.2}/src/duty/__init__.py +0 -0
  39. {duty-1.6.1 → duty-1.6.2}/src/duty/__main__.py +0 -0
  40. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/__init__.py +0 -0
  41. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/__init__.py +0 -0
  42. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/_io.py +0 -0
  43. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/autoflake.py +0 -0
  44. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/black.py +0 -0
  45. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/blacken_docs.py +0 -0
  46. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/build.py +0 -0
  47. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/coverage.py +0 -0
  48. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/flake8.py +0 -0
  49. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/git_changelog.py +0 -0
  50. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/griffe.py +0 -0
  51. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/interrogate.py +0 -0
  52. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/isort.py +0 -0
  53. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/mkdocs.py +0 -0
  54. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/mypy.py +0 -0
  55. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/pytest.py +0 -0
  56. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/ruff.py +0 -0
  57. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/safety.py +0 -0
  58. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/ssort.py +0 -0
  59. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/callables/twine.py +0 -0
  60. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/cli.py +0 -0
  61. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/collection.py +0 -0
  62. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/context.py +0 -0
  63. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/debug.py +0 -0
  64. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/decorator.py +0 -0
  65. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/exceptions.py +0 -0
  66. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/__init__.py +0 -0
  67. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_autoflake.py +0 -0
  68. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_base.py +0 -0
  69. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_black.py +0 -0
  70. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_blacken_docs.py +0 -0
  71. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_build.py +0 -0
  72. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_coverage.py +0 -0
  73. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_flake8.py +0 -0
  74. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_git_changelog.py +0 -0
  75. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_griffe.py +0 -0
  76. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_interrogate.py +0 -0
  77. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_isort.py +0 -0
  78. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_mkdocs.py +0 -0
  79. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_mypy.py +0 -0
  80. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_pytest.py +0 -0
  81. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_ruff.py +0 -0
  82. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_safety.py +0 -0
  83. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_ssort.py +0 -0
  84. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_twine.py +0 -0
  85. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/tools/_yore.py +0 -0
  86. {duty-1.6.1 → duty-1.6.2}/src/duty/_internal/validation.py +0 -0
  87. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/__init__.py +0 -0
  88. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/autoflake.py +0 -0
  89. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/black.py +0 -0
  90. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/blacken_docs.py +0 -0
  91. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/build.py +0 -0
  92. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/coverage.py +0 -0
  93. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/flake8.py +0 -0
  94. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/git_changelog.py +0 -0
  95. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/griffe.py +0 -0
  96. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/interrogate.py +0 -0
  97. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/isort.py +0 -0
  98. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/mkdocs.py +0 -0
  99. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/mypy.py +0 -0
  100. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/pytest.py +0 -0
  101. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/ruff.py +0 -0
  102. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/safety.py +0 -0
  103. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/ssort.py +0 -0
  104. {duty-1.6.1 → duty-1.6.2}/src/duty/callables/twine.py +0 -0
  105. {duty-1.6.1 → duty-1.6.2}/src/duty/cli.py +0 -0
  106. {duty-1.6.1 → duty-1.6.2}/src/duty/collection.py +0 -0
  107. {duty-1.6.1 → duty-1.6.2}/src/duty/completions.bash +0 -0
  108. {duty-1.6.1 → duty-1.6.2}/src/duty/context.py +0 -0
  109. {duty-1.6.1 → duty-1.6.2}/src/duty/decorator.py +0 -0
  110. {duty-1.6.1 → duty-1.6.2}/src/duty/exceptions.py +0 -0
  111. {duty-1.6.1 → duty-1.6.2}/src/duty/py.typed +0 -0
  112. {duty-1.6.1 → duty-1.6.2}/src/duty/tools.py +0 -0
  113. {duty-1.6.1 → duty-1.6.2}/src/duty/validation.py +0 -0
  114. {duty-1.6.1 → duty-1.6.2}/tests/__init__.py +0 -0
  115. {duty-1.6.1 → duty-1.6.2}/tests/conftest.py +0 -0
  116. {duty-1.6.1 → duty-1.6.2}/tests/fixtures/arguments.py +0 -0
  117. {duty-1.6.1 → duty-1.6.2}/tests/fixtures/basic.py +0 -0
  118. {duty-1.6.1 → duty-1.6.2}/tests/fixtures/booleans.py +0 -0
  119. {duty-1.6.1 → duty-1.6.2}/tests/fixtures/code.py +0 -0
  120. {duty-1.6.1 → duty-1.6.2}/tests/fixtures/list.py +0 -0
  121. {duty-1.6.1 → duty-1.6.2}/tests/fixtures/multiple.py +0 -0
  122. {duty-1.6.1 → duty-1.6.2}/tests/fixtures/precedence.py +0 -0
  123. {duty-1.6.1 → duty-1.6.2}/tests/fixtures/validation.py +0 -0
  124. {duty-1.6.1 → duty-1.6.2}/tests/test_api.py +0 -0
  125. {duty-1.6.1 → duty-1.6.2}/tests/test_cli.py +0 -0
  126. {duty-1.6.1 → duty-1.6.2}/tests/test_collection.py +0 -0
  127. {duty-1.6.1 → duty-1.6.2}/tests/test_context.py +0 -0
  128. {duty-1.6.1 → duty-1.6.2}/tests/test_decorator.py +0 -0
  129. {duty-1.6.1 → duty-1.6.2}/tests/test_running.py +0 -0
  130. {duty-1.6.1 → duty-1.6.2}/tests/test_validation.py +0 -0
@@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  <!-- insertion marker -->
8
+ ## [1.6.2](https://github.com/pawamoy/duty/releases/tag/1.6.2) - 2025-07-22
9
+
10
+ <small>[Compare with 1.6.1](https://github.com/pawamoy/duty/compare/1.6.1...1.6.2)</small>
11
+
12
+ ### Build
13
+
14
+ - Depend on failprint 1.0.5 ([cc8475c](https://github.com/pawamoy/duty/commit/cc8475c917282228087dc41836b282018d96a2ef) by Timothée Mazzucotelli).
15
+
8
16
  ## [1.6.1](https://github.com/pawamoy/duty/releases/tag/1.6.1) - 2025-07-22
9
17
 
10
18
  <small>[Compare with 1.6.0](https://github.com/pawamoy/duty/compare/1.6.0...1.6.1)</small>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: duty
3
- Version: 1.6.1
3
+ Version: 1.6.2
4
4
  Summary: A simple task runner.
5
5
  Keywords: task-runner,task,runner,cross-platform
6
6
  Author-Email: =?utf-8?q?Timoth=C3=A9e_Mazzucotelli?= <dev@pawamoy.fr>
@@ -31,7 +31,7 @@ Project-URL: Gitter, https://gitter.im/duty/community
31
31
  Project-URL: Funding, https://github.com/sponsors/pawamoy
32
32
  Requires-Python: >=3.9
33
33
  Requires-Dist: eval-type-backport; python_version < "3.10"
34
- Requires-Dist: failprint!=1.0.0,>=0.11
34
+ Requires-Dist: failprint>=1.0.5
35
35
  Requires-Dist: typing-extensions>=4.0; python_version < "3.11"
36
36
  Description-Content-Type: text/markdown
37
37
 
@@ -42,10 +42,10 @@ classifiers = [
42
42
  ]
43
43
  dependencies = [
44
44
  "eval-type-backport; python_version < '3.10'",
45
- "failprint>=0.11,!=1.0.0",
45
+ "failprint>=1.0.5",
46
46
  "typing-extensions>=4.0; python_version < '3.11'",
47
47
  ]
48
- version = "1.6.1"
48
+ version = "1.6.2"
49
49
 
50
50
  [project.urls]
51
51
  Homepage = "https://pawamoy.github.io/duty"
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
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
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
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