amati 0.3.23__tar.gz → 0.3.26__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 (103) hide show
  1. {amati-0.3.23 → amati-0.3.26}/.github/workflows/checks.yaml +1 -1
  2. {amati-0.3.23 → amati-0.3.26}/.github/workflows/codeql.yml +2 -2
  3. {amati-0.3.23 → amati-0.3.26}/.github/workflows/coverage.yaml +1 -1
  4. {amati-0.3.23 → amati-0.3.26}/.github/workflows/data-refresh.yaml +1 -1
  5. {amati-0.3.23 → amati-0.3.26}/.github/workflows/publish.yaml +1 -1
  6. {amati-0.3.23 → amati-0.3.26}/.github/workflows/scorecards.yml +1 -1
  7. {amati-0.3.23 → amati-0.3.26}/.github/workflows/tag-and-create-release.yaml +1 -1
  8. {amati-0.3.23 → amati-0.3.26}/.pre-commit-config.yaml +5 -1
  9. {amati-0.3.23 → amati-0.3.26}/Dockerfile +1 -1
  10. {amati-0.3.23 → amati-0.3.26}/PKG-INFO +5 -4
  11. {amati-0.3.23 → amati-0.3.26}/README.md +1 -0
  12. {amati-0.3.23 → amati-0.3.26}/amati/_data/files/media-types.json +1 -0
  13. {amati-0.3.23 → amati-0.3.26}/amati/_data/files/spdx-licences.json +22 -0
  14. {amati-0.3.23 → amati-0.3.26}/pyproject.toml +21 -4
  15. {amati-0.3.23 → amati-0.3.26}/uv.lock +93 -54
  16. {amati-0.3.23 → amati-0.3.26}/.dockerignore +0 -0
  17. {amati-0.3.23 → amati-0.3.26}/.github/actions/setup/action.yaml +0 -0
  18. {amati-0.3.23 → amati-0.3.26}/.github/dependabot.yml +0 -0
  19. {amati-0.3.23 → amati-0.3.26}/.github/workflows/dependency-review.yml +0 -0
  20. {amati-0.3.23 → amati-0.3.26}/.gitignore +0 -0
  21. {amati-0.3.23 → amati-0.3.26}/.python-version +0 -0
  22. {amati-0.3.23 → amati-0.3.26}/LICENSE +0 -0
  23. {amati-0.3.23 → amati-0.3.26}/SECURITY.md +0 -0
  24. {amati-0.3.23 → amati-0.3.26}/TEMPLATE.html +0 -0
  25. {amati-0.3.23 → amati-0.3.26}/amati/__init__.py +0 -0
  26. {amati-0.3.23 → amati-0.3.26}/amati/_data/files/http-status-codes.json +0 -0
  27. {amati-0.3.23 → amati-0.3.26}/amati/_data/files/iso9110.json +0 -0
  28. {amati-0.3.23 → amati-0.3.26}/amati/_data/files/schemes.json +0 -0
  29. {amati-0.3.23 → amati-0.3.26}/amati/_data/files/tlds.json +0 -0
  30. {amati-0.3.23 → amati-0.3.26}/amati/_data/http_status_code.py +0 -0
  31. {amati-0.3.23 → amati-0.3.26}/amati/_data/iso9110.py +0 -0
  32. {amati-0.3.23 → amati-0.3.26}/amati/_data/media_types.py +0 -0
  33. {amati-0.3.23 → amati-0.3.26}/amati/_data/refresh.py +0 -0
  34. {amati-0.3.23 → amati-0.3.26}/amati/_data/schemes.py +0 -0
  35. {amati-0.3.23 → amati-0.3.26}/amati/_data/spdx_licences.py +0 -0
  36. {amati-0.3.23 → amati-0.3.26}/amati/_data/tlds.py +0 -0
  37. {amati-0.3.23 → amati-0.3.26}/amati/_error_handler.py +0 -0
  38. {amati-0.3.23 → amati-0.3.26}/amati/_logging.py +0 -0
  39. {amati-0.3.23 → amati-0.3.26}/amati/_references.py +0 -0
  40. {amati-0.3.23 → amati-0.3.26}/amati/_resolve_forward_references.py +0 -0
  41. {amati-0.3.23 → amati-0.3.26}/amati/amati.py +0 -0
  42. {amati-0.3.23 → amati-0.3.26}/amati/exceptions.py +0 -0
  43. {amati-0.3.23 → amati-0.3.26}/amati/fields/__init__.py +0 -0
  44. {amati-0.3.23 → amati-0.3.26}/amati/fields/_custom_types.py +0 -0
  45. {amati-0.3.23 → amati-0.3.26}/amati/fields/commonmark.py +0 -0
  46. {amati-0.3.23 → amati-0.3.26}/amati/fields/email.py +0 -0
  47. {amati-0.3.23 → amati-0.3.26}/amati/fields/http_status_codes.py +0 -0
  48. {amati-0.3.23 → amati-0.3.26}/amati/fields/iso9110.py +0 -0
  49. {amati-0.3.23 → amati-0.3.26}/amati/fields/json.py +0 -0
  50. {amati-0.3.23 → amati-0.3.26}/amati/fields/media.py +0 -0
  51. {amati-0.3.23 → amati-0.3.26}/amati/fields/oas.py +0 -0
  52. {amati-0.3.23 → amati-0.3.26}/amati/fields/spdx_licences.py +0 -0
  53. {amati-0.3.23 → amati-0.3.26}/amati/fields/uri.py +0 -0
  54. {amati-0.3.23 → amati-0.3.26}/amati/file_handler.py +0 -0
  55. {amati-0.3.23 → amati-0.3.26}/amati/grammars/oas.py +0 -0
  56. {amati-0.3.23 → amati-0.3.26}/amati/grammars/rfc6901.py +0 -0
  57. {amati-0.3.23 → amati-0.3.26}/amati/grammars/rfc7159.py +0 -0
  58. {amati-0.3.23 → amati-0.3.26}/amati/model_validators.py +0 -0
  59. {amati-0.3.23 → amati-0.3.26}/amati/py.typed +0 -0
  60. {amati-0.3.23 → amati-0.3.26}/amati/validators/__init__.py +0 -0
  61. {amati-0.3.23 → amati-0.3.26}/amati/validators/_discriminators.py +0 -0
  62. {amati-0.3.23 → amati-0.3.26}/amati/validators/generic.py +0 -0
  63. {amati-0.3.23 → amati-0.3.26}/amati/validators/oas304.py +0 -0
  64. {amati-0.3.23 → amati-0.3.26}/amati/validators/oas311.py +0 -0
  65. {amati-0.3.23 → amati-0.3.26}/bin/checks.sh +0 -0
  66. {amati-0.3.23 → amati-0.3.26}/bin/startup.sh +0 -0
  67. {amati-0.3.23 → amati-0.3.26}/bin/upgrade-python.sh +0 -0
  68. {amati-0.3.23 → amati-0.3.26}/bin/uv-upgrade-from-main.sh +0 -0
  69. {amati-0.3.23 → amati-0.3.26}/scripts/setup_test_specs.py +0 -0
  70. {amati-0.3.23 → amati-0.3.26}/tests/__init__.py +0 -0
  71. {amati-0.3.23 → amati-0.3.26}/tests/data/.amati.tests.yaml +0 -0
  72. {amati-0.3.23 → amati-0.3.26}/tests/data/DigitalOcean-public.v2.errors.json +0 -0
  73. {amati-0.3.23 → amati-0.3.26}/tests/data/api.github.com.json.errors.json +0 -0
  74. {amati-0.3.23 → amati-0.3.26}/tests/data/api.github.com.yaml.errors.json +0 -0
  75. {amati-0.3.23 → amati-0.3.26}/tests/data/discourse.yml.errors.json +0 -0
  76. {amati-0.3.23 → amati-0.3.26}/tests/data/invalid-openapi.yaml +0 -0
  77. {amati-0.3.23 → amati-0.3.26}/tests/data/next-api.github.com.json.errors.json +0 -0
  78. {amati-0.3.23 → amati-0.3.26}/tests/data/openapi.yaml +0 -0
  79. {amati-0.3.23 → amati-0.3.26}/tests/data/openapi.yaml.gz +0 -0
  80. {amati-0.3.23 → amati-0.3.26}/tests/fields/__init__.py +0 -0
  81. {amati-0.3.23 → amati-0.3.26}/tests/fields/test_email.py +0 -0
  82. {amati-0.3.23 → amati-0.3.26}/tests/fields/test_http_status_codes.py +0 -0
  83. {amati-0.3.23 → amati-0.3.26}/tests/fields/test_iso9110.py +0 -0
  84. {amati-0.3.23 → amati-0.3.26}/tests/fields/test_media.py +0 -0
  85. {amati-0.3.23 → amati-0.3.26}/tests/fields/test_oas.py +0 -0
  86. {amati-0.3.23 → amati-0.3.26}/tests/fields/test_spdx_licences.py +0 -0
  87. {amati-0.3.23 → amati-0.3.26}/tests/fields/test_uri.py +0 -0
  88. {amati-0.3.23 → amati-0.3.26}/tests/model_validators/test_all_of.py +0 -0
  89. {amati-0.3.23 → amati-0.3.26}/tests/model_validators/test_at_least_one.py +0 -0
  90. {amati-0.3.23 → amati-0.3.26}/tests/model_validators/test_if_then.py +0 -0
  91. {amati-0.3.23 → amati-0.3.26}/tests/model_validators/test_only_one.py +0 -0
  92. {amati-0.3.23 → amati-0.3.26}/tests/references/test_uri_collector_mixin.py +0 -0
  93. {amati-0.3.23 → amati-0.3.26}/tests/references/test_uri_reference.py +0 -0
  94. {amati-0.3.23 → amati-0.3.26}/tests/references/test_uri_registry.py +0 -0
  95. {amati-0.3.23 → amati-0.3.26}/tests/strategies.py +0 -0
  96. {amati-0.3.23 → amati-0.3.26}/tests/test_amati.py +0 -0
  97. {amati-0.3.23 → amati-0.3.26}/tests/test_external_specs.py +0 -0
  98. {amati-0.3.23 → amati-0.3.26}/tests/test_logging.py +0 -0
  99. {amati-0.3.23 → amati-0.3.26}/tests/validators/__init__.py +0 -0
  100. {amati-0.3.23 → amati-0.3.26}/tests/validators/test_generic.py +0 -0
  101. {amati-0.3.23 → amati-0.3.26}/tests/validators/test_licence_object.py +0 -0
  102. {amati-0.3.23 → amati-0.3.26}/tests/validators/test_security_scheme_object.py +0 -0
  103. {amati-0.3.23 → amati-0.3.26}/tests/validators/test_server_variable_object.py +0 -0
@@ -77,7 +77,7 @@ jobs:
77
77
  - name: Coverage comment
78
78
  if: steps.check_changes.outputs.relevant == 'true'
79
79
  id: coverage_comment
80
- uses: py-cov-action/python-coverage-comment-action@0b4822882443b98c09c51091ad20a7a556581c17 # v3
80
+ uses: py-cov-action/python-coverage-comment-action@7188638f871f721a365d644f505d1ff3df20d683 # v3
81
81
  with:
82
82
  GITHUB_TOKEN: ${{ secrets.BOT_COMMENT_TOKEN }}
83
83
  continue-on-error: true
@@ -73,7 +73,7 @@ jobs:
73
73
 
74
74
  # Initializes the CodeQL tools for scanning.
75
75
  - name: Initialize CodeQL
76
- uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
76
+ uses: github/codeql-action/init@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
77
77
  with:
78
78
  languages: ${{ matrix.language }}
79
79
  build-mode: ${{ matrix.build-mode }}
@@ -101,6 +101,6 @@ jobs:
101
101
  exit 1
102
102
 
103
103
  - name: Perform CodeQL Analysis
104
- uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
104
+ uses: github/codeql-action/analyze@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
105
105
  with:
106
106
  category: "/language:${{matrix.language}}"
@@ -24,7 +24,7 @@ jobs:
24
24
  egress-policy: audit
25
25
 
26
26
  - name: Post comment
27
- uses: py-cov-action/python-coverage-comment-action@0b4822882443b98c09c51091ad20a7a556581c17 # v3
27
+ uses: py-cov-action/python-coverage-comment-action@7188638f871f721a365d644f505d1ff3df20d683 # v3
28
28
  with:
29
29
  GITHUB_TOKEN: ${{ secrets.BOT_COMMENT_TOKEN }}
30
30
  GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }}
@@ -25,7 +25,7 @@ jobs:
25
25
  token: ${{ secrets.BOT_TOKEN }}
26
26
 
27
27
  - name: Set up uv
28
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
28
+ uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
29
29
  with:
30
30
  version: "latest"
31
31
 
@@ -24,7 +24,7 @@ jobs:
24
24
 
25
25
  - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
26
26
  - name: Install uv
27
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
27
+ uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
28
28
  - name: Set up Python
29
29
  uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
30
30
  with:
@@ -80,6 +80,6 @@ jobs:
80
80
 
81
81
  # Upload the results to GitHub's code scanning dashboard.
82
82
  - name: "Upload to code-scanning"
83
- uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
83
+ uses: github/codeql-action/upload-sarif@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v4.31.10
84
84
  with:
85
85
  sarif_file: results.sarif
@@ -34,7 +34,7 @@ jobs:
34
34
  fetch-depth: 0 # Fetch all history for proper tag creation
35
35
  token: ${{ secrets.BOT_TOKEN }}
36
36
  - name: Install uv
37
- uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
37
+ uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
38
38
 
39
39
  - name: Current version
40
40
  id: current_version
@@ -1,7 +1,7 @@
1
1
  repos:
2
2
  - repo: https://github.com/astral-sh/ruff-pre-commit
3
3
  # Ruff version.
4
- rev: v0.14.10
4
+ rev: v0.14.13
5
5
  hooks:
6
6
  # Run the linter.
7
7
  - id: ruff-check
@@ -17,3 +17,7 @@ repos:
17
17
  hooks:
18
18
  - id: shellcheck
19
19
  args: [-x]
20
+ - repo: https://github.com/fpgmaas/deptry.git
21
+ rev: 0.24.0
22
+ hooks:
23
+ - id: deptry
@@ -1,4 +1,4 @@
1
- FROM python:3.14.2-slim@sha256:2751cbe93751f0147bc1584be957c6dd4c5f977c3d4e0396b56456a9fd4ed137
1
+ FROM python:3.14.2-slim@sha256:3955a7dd66ccf92b68d0232f7f86d892eaf75255511dc7e98961bdc990dc6c9b
2
2
 
3
3
  ENV PYTHONUNBUFFERED=1
4
4
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amati
3
- Version: 0.3.23
3
+ Version: 0.3.26
4
4
  Summary: Validates that a .yaml or .json file conforms to the OpenAPI Specifications 3.x.
5
5
  Project-URL: Homepage, https://github.com/gwyli/amati
6
6
  Project-URL: Issues, https://github.com/gwyli/amati/issues
@@ -24,11 +24,11 @@ Requires-Dist: abnf>=2.3.1
24
24
  Requires-Dist: bs4>=0.0.2
25
25
  Requires-Dist: idna>=3.10
26
26
  Requires-Dist: jinja2>=3.1.6
27
- Requires-Dist: jsonpickle>=4.1.1
28
27
  Requires-Dist: jsonschema>=4.24.0
29
28
  Requires-Dist: loguru>=0.7.3
30
- Requires-Dist: pydantic>=2.11.5
31
- Requires-Dist: pyyaml>=6.0.2
29
+ Requires-Dist: pydantic-core>=2.41.5
30
+ Requires-Dist: pydantic>=2.12.5
31
+ Requires-Dist: pyyaml>=6.0.3
32
32
  Requires-Dist: requests>=2.32.4
33
33
  Description-Content-Type: text/markdown
34
34
 
@@ -116,6 +116,7 @@ This project uses:
116
116
  * [Hypothesis](https://hypothesis.readthedocs.io/en/latest/index.html) for test data generation
117
117
  * [Coverage](https://coverage.readthedocs.io/en/7.6.8/) on both the tests and code for test coverage
118
118
  * [Shellcheck](https://github.com/koalaman/shellcheck/wiki) for as SAST for shell scripts
119
+ * [deptry](https://deptry.com/) to check for missing or unused dependencies
119
120
 
120
121
  It's expected that there are no errors and 100% of the code is reached and executed. The strategy for test coverage is based on parsing test specifications and not unit tests.
121
122
  amati runs tests on the external specifications, detailed in `tests/data/.amati.tests.yaml`. To be able to run these tests the GitHub repos containing the specifications need to be available locally. Specific revisions of the repos can be downloaded by running the following, which will clone the repos into `.amati/amati-tests-specs/<repo-name>`.
@@ -82,6 +82,7 @@ This project uses:
82
82
  * [Hypothesis](https://hypothesis.readthedocs.io/en/latest/index.html) for test data generation
83
83
  * [Coverage](https://coverage.readthedocs.io/en/7.6.8/) on both the tests and code for test coverage
84
84
  * [Shellcheck](https://github.com/koalaman/shellcheck/wiki) for as SAST for shell scripts
85
+ * [deptry](https://deptry.com/) to check for missing or unused dependencies
85
86
 
86
87
  It's expected that there are no errors and 100% of the code is reached and executed. The strategy for test coverage is based on parsing test specifications and not unit tests.
87
88
  amati runs tests on the external specifications, detailed in `tests/data/.amati.tests.yaml`. To be able to run these tests the GitHub repos containing the specifications need to be available locally. Specific revisions of the repos can be downloaded by running the following, which will clone the repos into `.amati/amati-tests-specs/<repo-name>`.
@@ -1631,6 +1631,7 @@
1631
1631
  "vnd.xacml+json",
1632
1632
  "vnd.xara",
1633
1633
  "vnd.xarin.cpj",
1634
+ "vnd.xcdn",
1634
1635
  "vnd.xecrets-encrypted",
1635
1636
  "vnd.xfdl",
1636
1637
  "vnd.xfdl.webform",
@@ -4073,6 +4073,17 @@
4073
4073
  ],
4074
4074
  "isOsiApproved": false
4075
4075
  },
4076
+ {
4077
+ "reference": "https://spdx.org/licenses/HPND-sell-variant-critical-systems.html",
4078
+ "isDeprecatedLicenseId": false,
4079
+ "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-critical-systems.json",
4080
+ "name": "HPND - sell variant with safety critical systems clause",
4081
+ "licenseId": "HPND-sell-variant-critical-systems",
4082
+ "seeAlso": [
4083
+ "https://gitlab.freedesktop.org/xorg/driver/xf86-video-voodoo/-/blob/68a5b6d98ae34749cca889f4373b4043d00bfe6a/src/voodoo_dga.c#L12-33"
4084
+ ],
4085
+ "isOsiApproved": false
4086
+ },
4076
4087
  {
4077
4088
  "reference": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.html",
4078
4089
  "isDeprecatedLicenseId": false,
@@ -7770,6 +7781,17 @@
7770
7781
  ],
7771
7782
  "isOsiApproved": false
7772
7783
  },
7784
+ {
7785
+ "reference": "https://spdx.org/licenses/UnRAR.html",
7786
+ "isDeprecatedLicenseId": false,
7787
+ "detailsUrl": "https://spdx.org/licenses/UnRAR.json",
7788
+ "name": "UnRAR License",
7789
+ "licenseId": "UnRAR",
7790
+ "seeAlso": [
7791
+ "https://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/LICENSES/unRAR.txt"
7792
+ ],
7793
+ "isOsiApproved": false
7794
+ },
7773
7795
  {
7774
7796
  "reference": "https://spdx.org/licenses/UPL-1.0.html",
7775
7797
  "isDeprecatedLicenseId": false,
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "amati"
3
- version = "0.3.23"
3
+ version = "0.3.26"
4
4
  description = "Validates that a .yaml or .json file conforms to the OpenAPI Specifications 3.x."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -29,11 +29,11 @@ dependencies = [
29
29
  "bs4>=0.0.2",
30
30
  "idna>=3.10",
31
31
  "jinja2>=3.1.6",
32
- "jsonpickle>=4.1.1",
33
32
  "jsonschema>=4.24.0",
34
33
  "loguru>=0.7.3",
35
- "pydantic>=2.11.5",
36
- "pyyaml>=6.0.2",
34
+ "pydantic>=2.12.5",
35
+ "pydantic-core>=2.41.5",
36
+ "pyyaml>=6.0.3",
37
37
  "requests>=2.32.4",
38
38
  ]
39
39
 
@@ -50,6 +50,7 @@ build-backend = "hatchling.build"
50
50
 
51
51
  [dependency-groups]
52
52
  dev = [
53
+ "deptry>=0.24.0",
53
54
  "hypothesis>=6.131.28",
54
55
  "pre-commit>=4.2.0",
55
56
  "pyright>=1.1.406",
@@ -65,6 +66,22 @@ omit=[
65
66
  "amati/_data/*",
66
67
  ]
67
68
 
69
+ [tool.deptry.package_module_name_map]
70
+ abnf="abnf"
71
+ bs4="bs4"
72
+ idna="idna"
73
+ jinja2="jinja2"
74
+ jsonschema="jsonschema"
75
+ loguru="loguru"
76
+ pydantic="pydantic"
77
+ requests="requests"
78
+ hypothesis="hypothesis"
79
+ pre_commit="pre_commit"
80
+ pyright="pyright"
81
+ pytest="pytest"
82
+ pytest-cov="pytest_cov"
83
+ ruff="ruff"
84
+
68
85
  [tool.pyright]
69
86
  reportMissingTypeStubs=false
70
87
  reportMisingImports=false # Ignore external dependencies
@@ -13,23 +13,24 @@ wheels = [
13
13
 
14
14
  [[package]]
15
15
  name = "amati"
16
- version = "0.3.23"
16
+ version = "0.3.26"
17
17
  source = { editable = "." }
18
18
  dependencies = [
19
19
  { name = "abnf" },
20
20
  { name = "bs4" },
21
21
  { name = "idna" },
22
22
  { name = "jinja2" },
23
- { name = "jsonpickle" },
24
23
  { name = "jsonschema" },
25
24
  { name = "loguru" },
26
25
  { name = "pydantic" },
26
+ { name = "pydantic-core" },
27
27
  { name = "pyyaml" },
28
28
  { name = "requests" },
29
29
  ]
30
30
 
31
31
  [package.dev-dependencies]
32
32
  dev = [
33
+ { name = "deptry" },
33
34
  { name = "hypothesis" },
34
35
  { name = "pre-commit" },
35
36
  { name = "pyright" },
@@ -44,16 +45,17 @@ requires-dist = [
44
45
  { name = "bs4", specifier = ">=0.0.2" },
45
46
  { name = "idna", specifier = ">=3.10" },
46
47
  { name = "jinja2", specifier = ">=3.1.6" },
47
- { name = "jsonpickle", specifier = ">=4.1.1" },
48
48
  { name = "jsonschema", specifier = ">=4.24.0" },
49
49
  { name = "loguru", specifier = ">=0.7.3" },
50
- { name = "pydantic", specifier = ">=2.11.5" },
51
- { name = "pyyaml", specifier = ">=6.0.2" },
50
+ { name = "pydantic", specifier = ">=2.12.5" },
51
+ { name = "pydantic-core", specifier = ">=2.41.5" },
52
+ { name = "pyyaml", specifier = ">=6.0.3" },
52
53
  { name = "requests", specifier = ">=2.32.4" },
53
54
  ]
54
55
 
55
56
  [package.metadata.requires-dev]
56
57
  dev = [
58
+ { name = "deptry", specifier = ">=0.24.0" },
57
59
  { name = "hypothesis", specifier = ">=6.131.28" },
58
60
  { name = "pre-commit", specifier = ">=4.2.0" },
59
61
  { name = "pyright", specifier = ">=1.1.406" },
@@ -148,6 +150,18 @@ wheels = [
148
150
  { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" },
149
151
  ]
150
152
 
153
+ [[package]]
154
+ name = "click"
155
+ version = "8.3.1"
156
+ source = { registry = "https://pypi.org/simple/" }
157
+ dependencies = [
158
+ { name = "colorama", marker = "sys_platform == 'win32'" },
159
+ ]
160
+ sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" }
161
+ wheels = [
162
+ { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" },
163
+ ]
164
+
151
165
  [[package]]
152
166
  name = "colorama"
153
167
  version = "0.4.6"
@@ -192,6 +206,28 @@ wheels = [
192
206
  { url = "https://files.pythonhosted.org/packages/8d/4c/1968f32fb9a2604645827e11ff84a31e59d532e01995f904723b4f5328b3/coverage-7.13.0-py3-none-any.whl", hash = "sha256:850d2998f380b1e266459ca5b47bc9e7daf9af1d070f66317972f382d46f1904", size = 210068, upload-time = "2025-12-08T13:14:36.236Z" },
193
207
  ]
194
208
 
209
+ [[package]]
210
+ name = "deptry"
211
+ version = "0.24.0"
212
+ source = { registry = "https://pypi.org/simple/" }
213
+ dependencies = [
214
+ { name = "click" },
215
+ { name = "colorama", marker = "sys_platform == 'win32'" },
216
+ { name = "packaging" },
217
+ { name = "requirements-parser" },
218
+ ]
219
+ sdist = { url = "https://files.pythonhosted.org/packages/58/aa/5cae0f25a2ac5334d5bd2782a6bcd80eecf184f433ff74b2fb0387cfbbb6/deptry-0.24.0.tar.gz", hash = "sha256:852e88af2087e03cdf9ece6916f3f58b74191ab51cc8074897951bd496ee7dbb", size = 440158, upload-time = "2025-11-09T00:31:44.637Z" }
220
+ wheels = [
221
+ { url = "https://files.pythonhosted.org/packages/21/5a/c1552996499911b6eabe874a994d9eede58ac3936d7fe7f865857b97c03f/deptry-0.24.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:a575880146bab671a62babb9825b85b4f1bda8aeaade4fcb59f9262caf91d6c7", size = 1774138, upload-time = "2025-11-09T00:31:41.896Z" },
222
+ { url = "https://files.pythonhosted.org/packages/32/b6/1dcc011fc3e6eec71601569c9de3215530563412b3714fba80dcd1a88ec8/deptry-0.24.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:00ec34b968a13c03a5268ce0211f891ace31851d916415e0a748fae9596c00d5", size = 1677340, upload-time = "2025-11-09T00:31:39.676Z" },
223
+ { url = "https://files.pythonhosted.org/packages/4a/e2/af81dfd46b457be9e8ded9472872141777fbda8af661f5d509157b165359/deptry-0.24.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ddfedafafe5cbfce31a50d4ea99d7b9074edcd08b9b94350dc739e2fb6ed7f9", size = 1782740, upload-time = "2025-11-09T00:31:28.302Z" },
224
+ { url = "https://files.pythonhosted.org/packages/ab/28/960c311aae084deef57ece41aac13cb359b06ce31b7771139e79c394a1b7/deptry-0.24.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd22fa2dbbdf4b38061ca9504f2a6ce41ec14fa5c9fe9b0b763ccc1275efebd5", size = 1845477, upload-time = "2025-11-09T00:31:33.452Z" },
225
+ { url = "https://files.pythonhosted.org/packages/f5/6c/4b972b011a06611e0cf8f4bb6bc04a3d0f9c651950ad9abe320fcbac6983/deptry-0.24.0-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:0fbe50a2122d79cec53fdfd73a7092c05f316555a1139bcbacf3432572675977", size = 1960410, upload-time = "2025-11-09T00:31:31.174Z" },
226
+ { url = "https://files.pythonhosted.org/packages/1b/08/0eac3c72a9fd79a043cc492f3ba350c47a7be2160288353218b2c8c1bf3a/deptry-0.24.0-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:92bd8d331a5a6f8e6247436bc6fe384bcf86a8d69fe33442d195996fb9b20547", size = 2023832, upload-time = "2025-11-09T00:31:36.381Z" },
227
+ { url = "https://files.pythonhosted.org/packages/35/e4/23dcbc505f6f35c70ba68015774cf891ceda080331d7fd6d75e84ada9f73/deptry-0.24.0-cp39-abi3-win_amd64.whl", hash = "sha256:94b354848130d45e16d3a3039ae8177bce33828f62028c4ff8f2e1b04f7182ba", size = 1631631, upload-time = "2025-11-09T00:31:47.108Z" },
228
+ { url = "https://files.pythonhosted.org/packages/39/69/6ec1e18e27dd6f80e4fb6c5fc05a6527242ff83b81c0711d0ba470e9a144/deptry-0.24.0-cp39-abi3-win_arm64.whl", hash = "sha256:ea58709e5f3aa77c0737d8fb76166b7703201cf368fbbb14072ccda968b6703a", size = 1550504, upload-time = "2025-11-09T00:31:45.988Z" },
229
+ ]
230
+
195
231
  [[package]]
196
232
  name = "distlib"
197
233
  version = "0.4.0"
@@ -203,23 +239,23 @@ wheels = [
203
239
 
204
240
  [[package]]
205
241
  name = "filelock"
206
- version = "3.20.0"
242
+ version = "3.20.3"
207
243
  source = { registry = "https://pypi.org/simple/" }
208
- sdist = { url = "https://files.pythonhosted.org/packages/58/46/0028a82567109b5ef6e4d2a1f04a583fb513e6cf9527fcdd09afd817deeb/filelock-3.20.0.tar.gz", hash = "sha256:711e943b4ec6be42e1d4e6690b48dc175c822967466bb31c0c293f34334c13f4", size = 18922, upload-time = "2025-10-08T18:03:50.056Z" }
244
+ sdist = { url = "https://files.pythonhosted.org/packages/1d/65/ce7f1b70157833bf3cb851b556a37d4547ceafc158aa9b34b36782f23696/filelock-3.20.3.tar.gz", hash = "sha256:18c57ee915c7ec61cff0ecf7f0f869936c7c30191bb0cf406f1341778d0834e1", size = 19485, upload-time = "2026-01-09T17:55:05.421Z" }
209
245
  wheels = [
210
- { url = "https://files.pythonhosted.org/packages/76/91/7216b27286936c16f5b4d0c530087e4a54eead683e6b0b73dd0c64844af6/filelock-3.20.0-py3-none-any.whl", hash = "sha256:339b4732ffda5cd79b13f4e2711a31b0365ce445d95d243bb996273d072546a2", size = 16054, upload-time = "2025-10-08T18:03:48.35Z" },
246
+ { url = "https://files.pythonhosted.org/packages/b5/36/7fb70f04bf00bc646cd5bb45aa9eddb15e19437a28b8fb2b4a5249fac770/filelock-3.20.3-py3-none-any.whl", hash = "sha256:4b0dda527ee31078689fc205ec4f1c1bf7d56cf88b6dc9426c4f230e46c2dce1", size = 16701, upload-time = "2026-01-09T17:55:04.334Z" },
211
247
  ]
212
248
 
213
249
  [[package]]
214
250
  name = "hypothesis"
215
- version = "6.148.9"
251
+ version = "6.150.2"
216
252
  source = { registry = "https://pypi.org/simple/" }
217
253
  dependencies = [
218
254
  { name = "sortedcontainers" },
219
255
  ]
220
- sdist = { url = "https://files.pythonhosted.org/packages/b4/1b/de4a349fe5942e500c3f6b0e61e09347d9fefab9e1ac7048c909080a31a0/hypothesis-6.148.9.tar.gz", hash = "sha256:6ec0696ed2fff8c514d61b6f1ca2cd1cb00c948ffd18cab1877c941c0ddb2839", size = 471562, upload-time = "2026-01-01T04:52:54.005Z" }
256
+ sdist = { url = "https://files.pythonhosted.org/packages/d2/19/a4eee0c98e2ec678854272f79646f34943f8fbbc42689cc355b530c5bc96/hypothesis-6.150.2.tar.gz", hash = "sha256:deb043c41c53eaf0955f4a08739c2a34c3d8040ee3d9a2da0aa5470122979f75", size = 475250, upload-time = "2026-01-13T17:09:22.146Z" }
221
257
  wheels = [
222
- { url = "https://files.pythonhosted.org/packages/ac/65/c7fbad05a0ace913b60342d36d1b871edc861f81ab98f60a298a781144a5/hypothesis-6.148.9-py3-none-any.whl", hash = "sha256:c514fcca90eded0e6b56d4df4bc41db935cb4635a9fe3ec9be21d09243ca983b", size = 538490, upload-time = "2026-01-01T04:52:51.353Z" },
258
+ { url = "https://files.pythonhosted.org/packages/b3/5e/21caad4acf45db7caf730cca1bc61422283e4c4e841efbc862d17ab81a21/hypothesis-6.150.2-py3-none-any.whl", hash = "sha256:648d6a2be435889e713ba3d335b0fb5e7a250f569b56e6867887c1e7a0d1f02f", size = 542712, upload-time = "2026-01-13T17:09:19.945Z" },
223
259
  ]
224
260
 
225
261
  [[package]]
@@ -261,18 +297,9 @@ wheels = [
261
297
  { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" },
262
298
  ]
263
299
 
264
- [[package]]
265
- name = "jsonpickle"
266
- version = "4.1.1"
267
- source = { registry = "https://pypi.org/simple/" }
268
- sdist = { url = "https://files.pythonhosted.org/packages/e4/a6/d07afcfdef402900229bcca795f80506b207af13a838d4d99ad45abf530c/jsonpickle-4.1.1.tar.gz", hash = "sha256:f86e18f13e2b96c1c1eede0b7b90095bbb61d99fedc14813c44dc2f361dbbae1", size = 316885, upload-time = "2025-06-02T20:36:11.57Z" }
269
- wheels = [
270
- { url = "https://files.pythonhosted.org/packages/c1/73/04df8a6fa66d43a9fd45c30f283cc4afff17da671886e451d52af60bdc7e/jsonpickle-4.1.1-py3-none-any.whl", hash = "sha256:bb141da6057898aa2438ff268362b126826c812a1721e31cf08a6e142910dc91", size = 47125, upload-time = "2025-06-02T20:36:08.647Z" },
271
- ]
272
-
273
300
  [[package]]
274
301
  name = "jsonschema"
275
- version = "4.25.1"
302
+ version = "4.26.0"
276
303
  source = { registry = "https://pypi.org/simple/" }
277
304
  dependencies = [
278
305
  { name = "attrs" },
@@ -280,9 +307,9 @@ dependencies = [
280
307
  { name = "referencing" },
281
308
  { name = "rpds-py" },
282
309
  ]
283
- sdist = { url = "https://files.pythonhosted.org/packages/74/69/f7185de793a29082a9f3c7728268ffb31cb5095131a9c139a74078e27336/jsonschema-4.25.1.tar.gz", hash = "sha256:e4a9655ce0da0c0b67a085847e00a3a51449e1157f4f75e9fb5aa545e122eb85", size = 357342, upload-time = "2025-08-18T17:03:50.038Z" }
310
+ sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" }
284
311
  wheels = [
285
- { url = "https://files.pythonhosted.org/packages/bf/9c/8c95d856233c1f82500c2450b8c68576b4cf1c871db3afac5c34ff84e6fd/jsonschema-4.25.1-py3-none-any.whl", hash = "sha256:3fba0169e345c7175110351d456342c364814cfcf3b964ba4587f22915230a63", size = 90040, upload-time = "2025-08-18T17:03:48.373Z" },
312
+ { url = "https://files.pythonhosted.org/packages/69/90/f63fb5873511e014207a475e2bb4e8b2e570d655b00ac19a9a0ca0a385ee/jsonschema-4.26.0-py3-none-any.whl", hash = "sha256:d489f15263b8d200f8387e64b4c3a75f06629559fb73deb8fdfb525f2dab50ce", size = 90630, upload-time = "2026-01-07T13:41:05.306Z" },
286
313
  ]
287
314
 
288
315
  [[package]]
@@ -457,15 +484,15 @@ wheels = [
457
484
 
458
485
  [[package]]
459
486
  name = "pyright"
460
- version = "1.1.407"
487
+ version = "1.1.408"
461
488
  source = { registry = "https://pypi.org/simple/" }
462
489
  dependencies = [
463
490
  { name = "nodeenv" },
464
491
  { name = "typing-extensions" },
465
492
  ]
466
- sdist = { url = "https://files.pythonhosted.org/packages/a6/1b/0aa08ee42948b61745ac5b5b5ccaec4669e8884b53d31c8ec20b2fcd6b6f/pyright-1.1.407.tar.gz", hash = "sha256:099674dba5c10489832d4a4b2d302636152a9a42d317986c38474c76fe562262", size = 4122872, upload-time = "2025-10-24T23:17:15.145Z" }
493
+ sdist = { url = "https://files.pythonhosted.org/packages/74/b2/5db700e52554b8f025faa9c3c624c59f1f6c8841ba81ab97641b54322f16/pyright-1.1.408.tar.gz", hash = "sha256:f28f2321f96852fa50b5829ea492f6adb0e6954568d1caa3f3af3a5f555eb684", size = 4400578, upload-time = "2026-01-08T08:07:38.795Z" }
467
494
  wheels = [
468
- { url = "https://files.pythonhosted.org/packages/dc/93/b69052907d032b00c40cb656d21438ec00b3a471733de137a3f65a49a0a0/pyright-1.1.407-py3-none-any.whl", hash = "sha256:6dd419f54fcc13f03b52285796d65e639786373f433e243f8b94cf93a7444d21", size = 5997008, upload-time = "2025-10-24T23:17:13.159Z" },
495
+ { url = "https://files.pythonhosted.org/packages/0c/82/a2c93e32800940d9573fb28c346772a14778b84ba7524e691b324620ab89/pyright-1.1.408-py3-none-any.whl", hash = "sha256:090b32865f4fdb1e0e6cd82bf5618480d48eecd2eb2e70f960982a3d9a4c17c1", size = 6399144, upload-time = "2026-01-08T08:07:37.082Z" },
469
496
  ]
470
497
 
471
498
  [[package]]
@@ -552,6 +579,18 @@ wheels = [
552
579
  { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" },
553
580
  ]
554
581
 
582
+ [[package]]
583
+ name = "requirements-parser"
584
+ version = "0.13.0"
585
+ source = { registry = "https://pypi.org/simple/" }
586
+ dependencies = [
587
+ { name = "packaging" },
588
+ ]
589
+ sdist = { url = "https://files.pythonhosted.org/packages/95/96/fb6dbfebb524d5601d359a47c78fe7ba1eef90fc4096404aa60c9a906fbb/requirements_parser-0.13.0.tar.gz", hash = "sha256:0843119ca2cb2331de4eb31b10d70462e39ace698fd660a915c247d2301a4418", size = 22630, upload-time = "2025-05-21T13:42:05.464Z" }
590
+ wheels = [
591
+ { url = "https://files.pythonhosted.org/packages/bd/60/50fbb6ffb35f733654466f1a90d162bcbea358adc3b0871339254fbc37b2/requirements_parser-0.13.0-py3-none-any.whl", hash = "sha256:2b3173faecf19ec5501971b7222d38f04cb45bb9d87d0ad629ca71e2e62ded14", size = 14782, upload-time = "2025-05-21T13:42:04.007Z" },
592
+ ]
593
+
555
594
  [[package]]
556
595
  name = "rpds-py"
557
596
  version = "0.30.0"
@@ -591,28 +630,28 @@ wheels = [
591
630
 
592
631
  [[package]]
593
632
  name = "ruff"
594
- version = "0.14.10"
595
- source = { registry = "https://pypi.org/simple/" }
596
- sdist = { url = "https://files.pythonhosted.org/packages/57/08/52232a877978dd8f9cf2aeddce3e611b40a63287dfca29b6b8da791f5e8d/ruff-0.14.10.tar.gz", hash = "sha256:9a2e830f075d1a42cd28420d7809ace390832a490ed0966fe373ba288e77aaf4", size = 5859763, upload-time = "2025-12-18T19:28:57.98Z" }
597
- wheels = [
598
- { url = "https://files.pythonhosted.org/packages/60/01/933704d69f3f05ee16ef11406b78881733c186fe14b6a46b05cfcaf6d3b2/ruff-0.14.10-py3-none-linux_armv6l.whl", hash = "sha256:7a3ce585f2ade3e1f29ec1b92df13e3da262178df8c8bdf876f48fa0e8316c49", size = 13527080, upload-time = "2025-12-18T19:29:25.642Z" },
599
- { url = "https://files.pythonhosted.org/packages/df/58/a0349197a7dfa603ffb7f5b0470391efa79ddc327c1e29c4851e85b09cc5/ruff-0.14.10-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:674f9be9372907f7257c51f1d4fc902cb7cf014b9980152b802794317941f08f", size = 13797320, upload-time = "2025-12-18T19:29:02.571Z" },
600
- { url = "https://files.pythonhosted.org/packages/7b/82/36be59f00a6082e38c23536df4e71cdbc6af8d7c707eade97fcad5c98235/ruff-0.14.10-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d85713d522348837ef9df8efca33ccb8bd6fcfc86a2cde3ccb4bc9d28a18003d", size = 12918434, upload-time = "2025-12-18T19:28:51.202Z" },
601
- { url = "https://files.pythonhosted.org/packages/a6/00/45c62a7f7e34da92a25804f813ebe05c88aa9e0c25e5cb5a7d23dd7450e3/ruff-0.14.10-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6987ebe0501ae4f4308d7d24e2d0fe3d7a98430f5adfd0f1fead050a740a3a77", size = 13371961, upload-time = "2025-12-18T19:29:04.991Z" },
602
- { url = "https://files.pythonhosted.org/packages/40/31/a5906d60f0405f7e57045a70f2d57084a93ca7425f22e1d66904769d1628/ruff-0.14.10-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:16a01dfb7b9e4eee556fbfd5392806b1b8550c9b4a9f6acd3dbe6812b193c70a", size = 13275629, upload-time = "2025-12-18T19:29:21.381Z" },
603
- { url = "https://files.pythonhosted.org/packages/3e/60/61c0087df21894cf9d928dc04bcd4fb10e8b2e8dca7b1a276ba2155b2002/ruff-0.14.10-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7165d31a925b7a294465fa81be8c12a0e9b60fb02bf177e79067c867e71f8b1f", size = 14029234, upload-time = "2025-12-18T19:29:00.132Z" },
604
- { url = "https://files.pythonhosted.org/packages/44/84/77d911bee3b92348b6e5dab5a0c898d87084ea03ac5dc708f46d88407def/ruff-0.14.10-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:c561695675b972effb0c0a45db233f2c816ff3da8dcfbe7dfc7eed625f218935", size = 15449890, upload-time = "2025-12-18T19:28:53.573Z" },
605
- { url = "https://files.pythonhosted.org/packages/e9/36/480206eaefa24a7ec321582dda580443a8f0671fdbf6b1c80e9c3e93a16a/ruff-0.14.10-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4bb98fcbbc61725968893682fd4df8966a34611239c9fd07a1f6a07e7103d08e", size = 15123172, upload-time = "2025-12-18T19:29:23.453Z" },
606
- { url = "https://files.pythonhosted.org/packages/5c/38/68e414156015ba80cef5473d57919d27dfb62ec804b96180bafdeaf0e090/ruff-0.14.10-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f24b47993a9d8cb858429e97bdf8544c78029f09b520af615c1d261bf827001d", size = 14460260, upload-time = "2025-12-18T19:29:27.808Z" },
607
- { url = "https://files.pythonhosted.org/packages/b3/19/9e050c0dca8aba824d67cc0db69fb459c28d8cd3f6855b1405b3f29cc91d/ruff-0.14.10-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59aabd2e2c4fd614d2862e7939c34a532c04f1084476d6833dddef4afab87e9f", size = 14229978, upload-time = "2025-12-18T19:29:11.32Z" },
608
- { url = "https://files.pythonhosted.org/packages/51/eb/e8dd1dd6e05b9e695aa9dd420f4577debdd0f87a5ff2fedda33c09e9be8c/ruff-0.14.10-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:213db2b2e44be8625002dbea33bb9c60c66ea2c07c084a00d55732689d697a7f", size = 14338036, upload-time = "2025-12-18T19:29:09.184Z" },
609
- { url = "https://files.pythonhosted.org/packages/6a/12/f3e3a505db7c19303b70af370d137795fcfec136d670d5de5391e295c134/ruff-0.14.10-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:b914c40ab64865a17a9a5b67911d14df72346a634527240039eb3bd650e5979d", size = 13264051, upload-time = "2025-12-18T19:29:13.431Z" },
610
- { url = "https://files.pythonhosted.org/packages/08/64/8c3a47eaccfef8ac20e0484e68e0772013eb85802f8a9f7603ca751eb166/ruff-0.14.10-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:1484983559f026788e3a5c07c81ef7d1e97c1c78ed03041a18f75df104c45405", size = 13283998, upload-time = "2025-12-18T19:29:06.994Z" },
611
- { url = "https://files.pythonhosted.org/packages/12/84/534a5506f4074e5cc0529e5cd96cfc01bb480e460c7edf5af70d2bcae55e/ruff-0.14.10-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c70427132db492d25f982fffc8d6c7535cc2fd2c83fc8888f05caaa248521e60", size = 13601891, upload-time = "2025-12-18T19:28:55.811Z" },
612
- { url = "https://files.pythonhosted.org/packages/0d/1e/14c916087d8598917dbad9b2921d340f7884824ad6e9c55de948a93b106d/ruff-0.14.10-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5bcf45b681e9f1ee6445d317ce1fa9d6cba9a6049542d1c3d5b5958986be8830", size = 14336660, upload-time = "2025-12-18T19:29:16.531Z" },
613
- { url = "https://files.pythonhosted.org/packages/f2/1c/d7b67ab43f30013b47c12b42d1acd354c195351a3f7a1d67f59e54227ede/ruff-0.14.10-py3-none-win32.whl", hash = "sha256:104c49fc7ab73f3f3a758039adea978869a918f31b73280db175b43a2d9b51d6", size = 13196187, upload-time = "2025-12-18T19:29:19.006Z" },
614
- { url = "https://files.pythonhosted.org/packages/fb/9c/896c862e13886fae2af961bef3e6312db9ebc6adc2b156fe95e615dee8c1/ruff-0.14.10-py3-none-win_amd64.whl", hash = "sha256:466297bd73638c6bdf06485683e812db1c00c7ac96d4ddd0294a338c62fdc154", size = 14661283, upload-time = "2025-12-18T19:29:30.16Z" },
615
- { url = "https://files.pythonhosted.org/packages/74/31/b0e29d572670dca3674eeee78e418f20bdf97fa8aa9ea71380885e175ca0/ruff-0.14.10-py3-none-win_arm64.whl", hash = "sha256:e51d046cf6dda98a4633b8a8a771451107413b0f07183b2bef03f075599e44e6", size = 13729839, upload-time = "2025-12-18T19:28:48.636Z" },
633
+ version = "0.14.13"
634
+ source = { registry = "https://pypi.org/simple/" }
635
+ sdist = { url = "https://files.pythonhosted.org/packages/50/0a/1914efb7903174b381ee2ffeebb4253e729de57f114e63595114c8ca451f/ruff-0.14.13.tar.gz", hash = "sha256:83cd6c0763190784b99650a20fec7633c59f6ebe41c5cc9d45ee42749563ad47", size = 6059504, upload-time = "2026-01-15T20:15:16.918Z" }
636
+ wheels = [
637
+ { url = "https://files.pythonhosted.org/packages/c3/ae/0deefbc65ca74b0ab1fd3917f94dc3b398233346a74b8bbb0a916a1a6bf6/ruff-0.14.13-py3-none-linux_armv6l.whl", hash = "sha256:76f62c62cd37c276cb03a275b198c7c15bd1d60c989f944db08a8c1c2dbec18b", size = 13062418, upload-time = "2026-01-15T20:14:50.779Z" },
638
+ { url = "https://files.pythonhosted.org/packages/47/df/5916604faa530a97a3c154c62a81cb6b735c0cb05d1e26d5ad0f0c8ac48a/ruff-0.14.13-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:914a8023ece0528d5cc33f5a684f5f38199bbb566a04815c2c211d8f40b5d0ed", size = 13442344, upload-time = "2026-01-15T20:15:07.94Z" },
639
+ { url = "https://files.pythonhosted.org/packages/4c/f3/e0e694dd69163c3a1671e102aa574a50357536f18a33375050334d5cd517/ruff-0.14.13-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d24899478c35ebfa730597a4a775d430ad0d5631b8647a3ab368c29b7e7bd063", size = 12354720, upload-time = "2026-01-15T20:15:09.854Z" },
640
+ { url = "https://files.pythonhosted.org/packages/c3/e8/67f5fcbbaee25e8fc3b56cc33e9892eca7ffe09f773c8e5907757a7e3bdb/ruff-0.14.13-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9aaf3870f14d925bbaf18b8a2347ee0ae7d95a2e490e4d4aea6813ed15ebc80e", size = 12774493, upload-time = "2026-01-15T20:15:20.908Z" },
641
+ { url = "https://files.pythonhosted.org/packages/6b/ce/d2e9cb510870b52a9565d885c0d7668cc050e30fa2c8ac3fb1fda15c083d/ruff-0.14.13-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac5b7f63dd3b27cc811850f5ffd8fff845b00ad70e60b043aabf8d6ecc304e09", size = 12815174, upload-time = "2026-01-15T20:15:05.74Z" },
642
+ { url = "https://files.pythonhosted.org/packages/88/00/c38e5da58beebcf4fa32d0ddd993b63dfacefd02ab7922614231330845bf/ruff-0.14.13-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d2b1097750d90ba82ce4ba676e85230a0ed694178ca5e61aa9b459970b3eb9", size = 13680909, upload-time = "2026-01-15T20:15:14.537Z" },
643
+ { url = "https://files.pythonhosted.org/packages/61/61/cd37c9dd5bd0a3099ba79b2a5899ad417d8f3b04038810b0501a80814fd7/ruff-0.14.13-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:7d0bf87705acbbcb8d4c24b2d77fbb73d40210a95c3903b443cd9e30824a5032", size = 15144215, upload-time = "2026-01-15T20:15:22.886Z" },
644
+ { url = "https://files.pythonhosted.org/packages/56/8a/85502d7edbf98c2df7b8876f316c0157359165e16cdf98507c65c8d07d3d/ruff-0.14.13-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3eb5da8e2c9e9f13431032fdcbe7681de9ceda5835efee3269417c13f1fed5c", size = 14706067, upload-time = "2026-01-15T20:14:48.271Z" },
645
+ { url = "https://files.pythonhosted.org/packages/7e/2f/de0df127feb2ee8c1e54354dc1179b4a23798f0866019528c938ba439aca/ruff-0.14.13-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:642442b42957093811cd8d2140dfadd19c7417030a7a68cf8d51fcdd5f217427", size = 14133916, upload-time = "2026-01-15T20:14:57.357Z" },
646
+ { url = "https://files.pythonhosted.org/packages/0d/77/9b99686bb9fe07a757c82f6f95e555c7a47801a9305576a9c67e0a31d280/ruff-0.14.13-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4acdf009f32b46f6e8864af19cbf6841eaaed8638e65c8dac845aea0d703c841", size = 13859207, upload-time = "2026-01-15T20:14:55.111Z" },
647
+ { url = "https://files.pythonhosted.org/packages/7d/46/2bdcb34a87a179a4d23022d818c1c236cb40e477faf0d7c9afb6813e5876/ruff-0.14.13-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:591a7f68860ea4e003917d19b5c4f5ac39ff558f162dc753a2c5de897fd5502c", size = 14043686, upload-time = "2026-01-15T20:14:52.841Z" },
648
+ { url = "https://files.pythonhosted.org/packages/1a/a9/5c6a4f56a0512c691cf143371bcf60505ed0f0860f24a85da8bd123b2bf1/ruff-0.14.13-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:774c77e841cc6e046fc3e91623ce0903d1cd07e3a36b1a9fe79b81dab3de506b", size = 12663837, upload-time = "2026-01-15T20:15:18.921Z" },
649
+ { url = "https://files.pythonhosted.org/packages/fe/bb/b920016ece7651fa7fcd335d9d199306665486694d4361547ccb19394c44/ruff-0.14.13-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:61f4e40077a1248436772bb6512db5fc4457fe4c49e7a94ea7c5088655dd21ae", size = 12805867, upload-time = "2026-01-15T20:14:59.272Z" },
650
+ { url = "https://files.pythonhosted.org/packages/7d/b3/0bd909851e5696cd21e32a8fc25727e5f58f1934b3596975503e6e85415c/ruff-0.14.13-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6d02f1428357fae9e98ac7aa94b7e966fd24151088510d32cf6f902d6c09235e", size = 13208528, upload-time = "2026-01-15T20:15:03.732Z" },
651
+ { url = "https://files.pythonhosted.org/packages/3b/3b/e2d94cb613f6bbd5155a75cbe072813756363eba46a3f2177a1fcd0cd670/ruff-0.14.13-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:e399341472ce15237be0c0ae5fbceca4b04cd9bebab1a2b2c979e015455d8f0c", size = 13929242, upload-time = "2026-01-15T20:15:11.918Z" },
652
+ { url = "https://files.pythonhosted.org/packages/6a/c5/abd840d4132fd51a12f594934af5eba1d5d27298a6f5b5d6c3be45301caf/ruff-0.14.13-py3-none-win32.whl", hash = "sha256:ef720f529aec113968b45dfdb838ac8934e519711da53a0456038a0efecbd680", size = 12919024, upload-time = "2026-01-15T20:14:43.647Z" },
653
+ { url = "https://files.pythonhosted.org/packages/c2/55/6384b0b8ce731b6e2ade2b5449bf07c0e4c31e8a2e68ea65b3bafadcecc5/ruff-0.14.13-py3-none-win_amd64.whl", hash = "sha256:6070bd026e409734b9257e03e3ef18c6e1a216f0435c6751d7a8ec69cb59abef", size = 14097887, upload-time = "2026-01-15T20:15:01.48Z" },
654
+ { url = "https://files.pythonhosted.org/packages/4d/e1/7348090988095e4e39560cfc2f7555b1b2a7357deba19167b600fdf5215d/ruff-0.14.13-py3-none-win_arm64.whl", hash = "sha256:7ab819e14f1ad9fe39f246cfcc435880ef7a9390d81a2b6ac7e01039083dd247", size = 13080224, upload-time = "2026-01-15T20:14:45.853Z" },
616
655
  ]
617
656
 
618
657
  [[package]]
@@ -656,25 +695,25 @@ wheels = [
656
695
 
657
696
  [[package]]
658
697
  name = "urllib3"
659
- version = "2.6.1"
698
+ version = "2.6.3"
660
699
  source = { registry = "https://pypi.org/simple/" }
661
- sdist = { url = "https://files.pythonhosted.org/packages/5e/1d/0f3a93cca1ac5e8287842ed4eebbd0f7a991315089b1a0b01c7788aa7b63/urllib3-2.6.1.tar.gz", hash = "sha256:5379eb6e1aba4088bae84f8242960017ec8d8e3decf30480b3a1abdaa9671a3f", size = 432678, upload-time = "2025-12-08T15:25:26.773Z" }
700
+ sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" }
662
701
  wheels = [
663
- { url = "https://files.pythonhosted.org/packages/bc/56/190ceb8cb10511b730b564fb1e0293fa468363dbad26145c34928a60cb0c/urllib3-2.6.1-py3-none-any.whl", hash = "sha256:e67d06fe947c36a7ca39f4994b08d73922d40e6cca949907be05efa6fd75110b", size = 131138, upload-time = "2025-12-08T15:25:25.51Z" },
702
+ { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" },
664
703
  ]
665
704
 
666
705
  [[package]]
667
706
  name = "virtualenv"
668
- version = "20.35.4"
707
+ version = "20.36.1"
669
708
  source = { registry = "https://pypi.org/simple/" }
670
709
  dependencies = [
671
710
  { name = "distlib" },
672
711
  { name = "filelock" },
673
712
  { name = "platformdirs" },
674
713
  ]
675
- sdist = { url = "https://files.pythonhosted.org/packages/20/28/e6f1a6f655d620846bd9df527390ecc26b3805a0c5989048c210e22c5ca9/virtualenv-20.35.4.tar.gz", hash = "sha256:643d3914d73d3eeb0c552cbb12d7e82adf0e504dbf86a3182f8771a153a1971c", size = 6028799, upload-time = "2025-10-29T06:57:40.511Z" }
714
+ sdist = { url = "https://files.pythonhosted.org/packages/aa/a3/4d310fa5f00863544e1d0f4de93bddec248499ccf97d4791bc3122c9d4f3/virtualenv-20.36.1.tar.gz", hash = "sha256:8befb5c81842c641f8ee658481e42641c68b5eab3521d8e092d18320902466ba", size = 6032239, upload-time = "2026-01-09T18:21:01.296Z" }
676
715
  wheels = [
677
- { url = "https://files.pythonhosted.org/packages/79/0c/c05523fa3181fdf0c9c52a6ba91a23fbf3246cc095f26f6516f9c60e6771/virtualenv-20.35.4-py3-none-any.whl", hash = "sha256:c21c9cede36c9753eeade68ba7d523529f228a403463376cf821eaae2b650f1b", size = 6005095, upload-time = "2025-10-29T06:57:37.598Z" },
716
+ { url = "https://files.pythonhosted.org/packages/6a/2a/dc2228b2888f51192c7dc766106cd475f1b768c10caaf9727659726f7391/virtualenv-20.36.1-py3-none-any.whl", hash = "sha256:575a8d6b124ef88f6f51d56d656132389f961062a9177016a50e4f507bbcc19f", size = 6008258, upload-time = "2026-01-09T18:20:59.425Z" },
678
717
  ]
679
718
 
680
719
  [[package]]
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