dsa-study 0.4.2__tar.gz → 0.4.4__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.
- {dsa_study-0.4.2 → dsa_study-0.4.4}/.github/workflows/ci.yml +1 -1
- {dsa_study-0.4.2 → dsa_study-0.4.4}/.github/workflows/publish.yml +3 -0
- dsa_study-0.4.2/README.md → dsa_study-0.4.4/PKG-INFO +25 -2
- dsa_study-0.4.2/PKG-INFO → dsa_study-0.4.4/README.md +10 -13
- {dsa_study-0.4.2 → dsa_study-0.4.4}/justfile +7 -1
- {dsa_study-0.4.2 → dsa_study-0.4.4}/pyproject.toml +10 -2
- {dsa_study-0.4.2 → dsa_study-0.4.4}/uv.lock +86 -1
- {dsa_study-0.4.2 → dsa_study-0.4.4}/.gitignore +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/.pre-commit-config.yaml +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/.python-version +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/LICENSE +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/src/dsa/__init__.py +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/src/dsa/algorithms/__init__.py +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/src/dsa/data_structures/__init__.py +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/src/dsa/data_structures/doubly_linked_list.py +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/src/dsa/data_structures/linked_list.py +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/tests/data_structures/test_doubly_linked_list.py +0 -0
- {dsa_study-0.4.2 → dsa_study-0.4.4}/tests/data_structures/test_linked_list.py +0 -0
|
@@ -1,7 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dsa-study
|
|
3
|
+
Version: 0.4.4
|
|
4
|
+
Summary: A project to implement various data structures and algorithms in Python.
|
|
5
|
+
Project-URL: Repository, https://github.com/pablohernandezdo/dsa-study-library
|
|
6
|
+
Author: Pablo Hernandez
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Classifier: Typing :: Typed
|
|
13
|
+
Requires-Python: <3.14,>=3.13
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# DSA Learning Library
|
|
2
17
|
|
|
3
18
|
[](https://github.com/pablohernandezdo/dsa-study-library/actions/workflows/ci.yml)
|
|
4
|
-
|
|
19
|
+
[](https://pypi.org/project/dsa-study/)
|
|
20
|
+
[](https://pypi.org/project/dsa-study/)
|
|
21
|
+
[](https://github.com/pablohernandezdo/dsa-study-library/blob/main/LICENSE)
|
|
5
22
|
|
|
6
23
|
Educational implementations of common data structures and algorithms written in clean, typed, idiomatic Python.
|
|
7
24
|
|
|
@@ -161,6 +178,12 @@ Every implementation should include tests covering:
|
|
|
161
178
|
|
|
162
179
|
## Usage
|
|
163
180
|
|
|
181
|
+
Installation:
|
|
182
|
+
|
|
183
|
+
```
|
|
184
|
+
pip install dsa-study
|
|
185
|
+
```
|
|
186
|
+
|
|
164
187
|
Installation from source:
|
|
165
188
|
|
|
166
189
|
```bash
|
|
@@ -1,18 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
Name: dsa-study
|
|
3
|
-
Version: 0.4.2
|
|
4
|
-
Summary: A project to implement various data structures and algorithms in Python.
|
|
5
|
-
Project-URL: Repository, https://github.com/pablohernandezdo/dsa-study-library
|
|
6
|
-
Author: Pablo Hernandez
|
|
7
|
-
License-Expression: MIT
|
|
8
|
-
License-File: LICENSE
|
|
9
|
-
Requires-Python: >=3.13
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
11
|
-
|
|
12
|
-
# DSA Study
|
|
1
|
+
# DSA Learning Library
|
|
13
2
|
|
|
14
3
|
[](https://github.com/pablohernandezdo/dsa-study-library/actions/workflows/ci.yml)
|
|
15
|
-
|
|
4
|
+
[](https://pypi.org/project/dsa-study/)
|
|
5
|
+
[](https://pypi.org/project/dsa-study/)
|
|
6
|
+
[](https://github.com/pablohernandezdo/dsa-study-library/blob/main/LICENSE)
|
|
16
7
|
|
|
17
8
|
Educational implementations of common data structures and algorithms written in clean, typed, idiomatic Python.
|
|
18
9
|
|
|
@@ -172,6 +163,12 @@ Every implementation should include tests covering:
|
|
|
172
163
|
|
|
173
164
|
## Usage
|
|
174
165
|
|
|
166
|
+
Installation:
|
|
167
|
+
|
|
168
|
+
```
|
|
169
|
+
pip install dsa-study
|
|
170
|
+
```
|
|
171
|
+
|
|
175
172
|
Installation from source:
|
|
176
173
|
|
|
177
174
|
```bash
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "dsa-study"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.4"
|
|
4
4
|
description = "A project to implement various data structures and algorithms in Python."
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.13"
|
|
6
|
+
requires-python = ">=3.13,<3.14"
|
|
7
7
|
license = "MIT"
|
|
8
8
|
|
|
9
|
+
classifiers = [
|
|
10
|
+
"Programming Language :: Python :: 3",
|
|
11
|
+
"Programming Language :: Python :: 3.13",
|
|
12
|
+
"Typing :: Typed",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
]
|
|
15
|
+
|
|
9
16
|
authors = [
|
|
10
17
|
{ name = "Pablo Hernandez" }
|
|
11
18
|
]
|
|
@@ -16,6 +23,7 @@ dev = [
|
|
|
16
23
|
"mypy>=2.1.0",
|
|
17
24
|
"pre-commit>=4.6.0",
|
|
18
25
|
"pytest>=9.0.3",
|
|
26
|
+
"pytest-cov>=7.1.0",
|
|
19
27
|
"ruff>=0.15.17",
|
|
20
28
|
]
|
|
21
29
|
|
|
@@ -64,6 +64,75 @@ wheels = [
|
|
|
64
64
|
{ url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload_time = "2022-10-25T02:36:20.889Z" },
|
|
65
65
|
]
|
|
66
66
|
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "coverage"
|
|
69
|
+
version = "7.14.1"
|
|
70
|
+
source = { registry = "https://pypi.org/simple" }
|
|
71
|
+
sdist = { url = "https://files.pythonhosted.org/packages/54/fd/0ab2772530e946e1be1abd0bc09e647ec9b02e88f0867857601fefca8953/coverage-7.14.1.tar.gz", hash = "sha256:30c08f7d90415aa98b3c990385dea2939b0da55f38515e5b369b83655f8523be", size = 920132, upload_time = "2026-05-26T20:41:36.783Z" }
|
|
72
|
+
wheels = [
|
|
73
|
+
{ url = "https://files.pythonhosted.org/packages/8a/9e/5f6d56327c62b185225d145191c607e07515294a0aa6338e58805cd4a5ac/coverage-7.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:be9f2c802dcfce3f71298303aa5dad0dce440a76c52f2f60dacd8656dab78793", size = 220044, upload_time = "2026-05-26T20:39:29.902Z" },
|
|
74
|
+
{ url = "https://files.pythonhosted.org/packages/75/92/e82aca356744cbbc0f77a0b623e38918c1872361963413a3bab5d0340393/coverage-7.14.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6223a72fd0e4c7156353ec0f08a5f93623e1d3034d0e2683b9bb8ea674131b1d", size = 220412, upload_time = "2026-05-26T20:39:31.561Z" },
|
|
75
|
+
{ url = "https://files.pythonhosted.org/packages/27/c9/385bde0bf7ed0f4bf3a7ee5367060a86b5d218718cfd6fb943c0f836b34f/coverage-7.14.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:7279d2110a28cebc738b6459ecda2771735a4c18465fbbd36b3288fe5ed92247", size = 251412, upload_time = "2026-05-26T20:39:33.337Z" },
|
|
76
|
+
{ url = "https://files.pythonhosted.org/packages/51/8c/23faf6a2343a0d17f960a4bd56c43bc7eb4cf312f774dd6ceebd82c7d8fc/coverage-7.14.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9eeb3fcbc13ba40dfbdb22d01d196a28e9cef9ed4c29b60061a1e0e823a9929d", size = 254008, upload_time = "2026-05-26T20:39:35.009Z" },
|
|
77
|
+
{ url = "https://files.pythonhosted.org/packages/42/06/36f4aa9ca8a815e6036156e80706a67828bb97bd826948244f6996dda957/coverage-7.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f0cfc27c539f07cf5c0a4cfe211d0b6cae039f8f40526dbaa71944e64b50a7b", size = 255241, upload_time = "2026-05-26T20:39:36.71Z" },
|
|
78
|
+
{ url = "https://files.pythonhosted.org/packages/ca/79/95266316352f90f6b1c6736bb413302edfde2453fb32422d3911642691b3/coverage-7.14.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:221c70f316241a78e77e607c227cefc8808d4e08f28d99c04f35694690e940be", size = 257373, upload_time = "2026-05-26T20:39:38.412Z" },
|
|
79
|
+
{ url = "https://files.pythonhosted.org/packages/e3/9c/58316d1f66c488b5fca8a0eb3e98348807813efa8a0d0833b9021be27488/coverage-7.14.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:da028256b04ec30e5e0114b6f76172938c313991f0a2d3d894271315cf5d5e43", size = 251635, upload_time = "2026-05-26T20:39:40.268Z" },
|
|
80
|
+
{ url = "https://files.pythonhosted.org/packages/ef/5a/ca2398a568e16fed7bb713e84ba3603a7164fb65779abe645c565ec890d5/coverage-7.14.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:76a085d7005236a767e3426148b2c407e53ad61695c562f8a81da2d373324901", size = 253373, upload_time = "2026-05-26T20:39:42.145Z" },
|
|
81
|
+
{ url = "https://files.pythonhosted.org/packages/6e/2c/0396562c32deaebe7be51d865b3a41e9a87d7561acafe1a28f53b07e019a/coverage-7.14.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b553d04b5e778a8e56d57eb134aff42a92718ecba45e79c4764ecfa40efd92ff", size = 251341, upload_time = "2026-05-26T20:39:43.907Z" },
|
|
82
|
+
{ url = "https://files.pythonhosted.org/packages/fd/8f/a94f9221184c9cae1ee115820e3798e48b6b17777a9f19e46fb9a0c8dc74/coverage-7.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:46f714d2fb8ae2f4f29f23ada7f1e79b759fff5a70f94a1dac23af204c3ec9e4", size = 255497, upload_time = "2026-05-26T20:39:46.166Z" },
|
|
83
|
+
{ url = "https://files.pythonhosted.org/packages/71/69/505d70e47db1eaebcd002c39759707621ef184cd6b1ae084d9f41293f323/coverage-7.14.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:1896f5e19ff3f0431c7ce2172adc54890fd97f86b59ced8ca1649145d9ffe35d", size = 251159, upload_time = "2026-05-26T20:39:48.03Z" },
|
|
84
|
+
{ url = "https://files.pythonhosted.org/packages/e0/aa/58681c383aa33a9d2ed40a02d7a22fbf780d1fa4d575396365777828198c/coverage-7.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:62fd185ef9df3c33d1c8178c5af105f762afbad96038de9a4ae100aa6297ca33", size = 252934, upload_time = "2026-05-26T20:39:49.872Z" },
|
|
85
|
+
{ url = "https://files.pythonhosted.org/packages/eb/fd/11c928cd6bdffc7074bb5965c173d9ebf517fb00205e1da524b98d29ef92/coverage-7.14.1-cp313-cp313-win32.whl", hash = "sha256:ab4af6352741a604c431c6072fce5bee33bf0f20dc7a56618d6bf6bb89e9810c", size = 222584, upload_time = "2026-05-26T20:39:51.68Z" },
|
|
86
|
+
{ url = "https://files.pythonhosted.org/packages/6f/92/fb416fc26d340dcba19518c418d6048e913186e17243982c5e435e41fa7a/coverage-7.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:7af486dabe8954d03b087f0021540897afe084f04e16ff5579e08cc46f871416", size = 223394, upload_time = "2026-05-26T20:39:53.472Z" },
|
|
87
|
+
{ url = "https://files.pythonhosted.org/packages/73/c6/02d56e3867972f77d5036de924643f26c056e848f00452cafb4dbc3c29b4/coverage-7.14.1-cp313-cp313-win_arm64.whl", hash = "sha256:2224f89ffd0c5605ccce1ed7a584da162bc7c55f601ab1c946bc9de31a486b42", size = 222015, upload_time = "2026-05-26T20:39:55.374Z" },
|
|
88
|
+
{ url = "https://files.pythonhosted.org/packages/4d/9e/fcc77914050df73f7662fa1f00902774c79c075a8388ab334074574bf77e/coverage-7.14.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:de286598cc65d2b489411174b1faec2f5a7775fb3201fd925db2a76b4030f37d", size = 220733, upload_time = "2026-05-26T20:39:57.189Z" },
|
|
89
|
+
{ url = "https://files.pythonhosted.org/packages/f7/67/2963cbdaf5cbadec44efa3a1e39eaa1f02df4079585f05387607a221e126/coverage-7.14.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:042c46ded7c288aeb07cf14a28b6c1e10b78fcba40171c3fa1e939377eeef0b5", size = 221086, upload_time = "2026-05-26T20:39:59.019Z" },
|
|
90
|
+
{ url = "https://files.pythonhosted.org/packages/c8/c5/8701645574e11881f2f47d8930f98bc48b5d43b25eb5b4430dfc4a2f9f48/coverage-7.14.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:f4ddbe407477f04c45115d1a4e5bc480f753553b534d338d4c3358b1cdd0ea52", size = 262381, upload_time = "2026-05-26T20:40:00.822Z" },
|
|
91
|
+
{ url = "https://files.pythonhosted.org/packages/7c/28/7a64d73598263e0c5abd5084211a8474488d31b3c552ff531c719dfcff62/coverage-7.14.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:d13e6725992e2d2fd7d81d4f5241952d13740121dfd501da09201be39b2c003a", size = 264458, upload_time = "2026-05-26T20:40:02.506Z" },
|
|
92
|
+
{ url = "https://files.pythonhosted.org/packages/fa/d8/4969179db9f7eb4df218e69540adf829d1c835f59452513d065d15446802/coverage-7.14.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f747dc8edcfe740130f28f32f3995e955494285717e86ee25af51db2219df08a", size = 266884, upload_time = "2026-05-26T20:40:04.421Z" },
|
|
93
|
+
{ url = "https://files.pythonhosted.org/packages/a6/78/a45d5794dbc9bafd97afc96a4377c86c7820d78b6cf51b89bc1d4e919275/coverage-7.14.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ced2f09ef276fd58611a1ef502164ad266d2b75174e5a40cabbdb4033f9f6cf2", size = 268022, upload_time = "2026-05-26T20:40:06.298Z" },
|
|
94
|
+
{ url = "https://files.pythonhosted.org/packages/21/cb/4f5e354e9e3e67af96bd4e57113e6db6b22298c7168b13eec408a549903d/coverage-7.14.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b84800013769a78ccb9ef4659402e26d06867e337b61ec365f77ad008adea80e", size = 261631, upload_time = "2026-05-26T20:40:08.226Z" },
|
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/ec/49/eced49af4cb996d5d8b7e94e736175c513e4facd3398507b89892b4326d8/coverage-7.14.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ea8cd6ca0ee9f616aaef3afc6882e32c2cbf18b00d96313ffd76af650574034d", size = 264443, upload_time = "2026-05-26T20:40:10.137Z" },
|
|
96
|
+
{ url = "https://files.pythonhosted.org/packages/f1/d8/5603a88a7c5913a6b54f6cb1a8c46f7b39cbb30f27cd3f492908da09b2d7/coverage-7.14.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:aa5e304a873fabddc11e484e9b6b738bd38bd7bed17b09aa84eecf5332e8b8bb", size = 262069, upload_time = "2026-05-26T20:40:11.999Z" },
|
|
97
|
+
{ url = "https://files.pythonhosted.org/packages/f0/59/2ae3cb79da554a06c8619d6c88ea19dd1e4aed4b834b6a83bb1fa243bdc5/coverage-7.14.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:5a1c5215be81035e629d5bc756650634d0bf31991038db7a0eccb90f025ce16d", size = 265780, upload_time = "2026-05-26T20:40:13.858Z" },
|
|
98
|
+
{ url = "https://files.pythonhosted.org/packages/af/5f/b130c1dc999031f2648bd25317fbce505ad8d5562079b4ed81e736a84967/coverage-7.14.1-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:79058c47dae6788504b5effb319961bcd72d7240551464b91d474bc0ed186d69", size = 260970, upload_time = "2026-05-26T20:40:16.142Z" },
|
|
99
|
+
{ url = "https://files.pythonhosted.org/packages/87/d1/ec13ccddeb48ec963bdfa72a11224bac2584bd045ba13beca82f8113e9c7/coverage-7.14.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:370c5afae3fa0658e11694a32b24c2778f6bc2d17718121f94ee185e69f26b54", size = 263157, upload_time = "2026-05-26T20:40:18.382Z" },
|
|
100
|
+
{ url = "https://files.pythonhosted.org/packages/cf/c2/cd91ead503045161092d3845f7bb95ea2f25131ce96d3e314dd835d91b9c/coverage-7.14.1-cp313-cp313t-win32.whl", hash = "sha256:3758dd0a7f1fa57365ef2e781df0f0731d38b6e3772259d13dae4bd8a958d4b1", size = 223259, upload_time = "2026-05-26T20:40:20.381Z" },
|
|
101
|
+
{ url = "https://files.pythonhosted.org/packages/71/9f/1e28d97e6bd2c76b07f38b7c02870f1371255ff6717f54eca578fcbbdd0e/coverage-7.14.1-cp313-cp313t-win_amd64.whl", hash = "sha256:6ff665fb023a77386fe11685190cee1f60a7d635994a30d9b0a061533d470fce", size = 224320, upload_time = "2026-05-26T20:40:22.316Z" },
|
|
102
|
+
{ url = "https://files.pythonhosted.org/packages/a9/e0/d936e908f0e1efa55e52b91e01b52f1055cef5e1ab2718493390ed8e2fb8/coverage-7.14.1-cp313-cp313t-win_arm64.whl", hash = "sha256:17a5a241e5997621a956a7f402a7433ef4221e5152809b785bec79e2323799f1", size = 222577, upload_time = "2026-05-26T20:40:24.894Z" },
|
|
103
|
+
{ url = "https://files.pythonhosted.org/packages/d6/34/fc2f101b151af3799a101f0550b0454aa008afdc0add677394ec4aa8ea10/coverage-7.14.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:d5ed429d0b8edaac649e889b4ffcedb6c80b06629a3f93050e3dddfb99235bee", size = 220091, upload_time = "2026-05-26T20:40:27.249Z" },
|
|
104
|
+
{ url = "https://files.pythonhosted.org/packages/3d/a7/1ebae2ab5b961b5c79bb09fe7b3ac99edb190d8be4a8c510b2cf66f46468/coverage-7.14.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:8011224a62280e50dab346960c03cf47aca1a1e09e608c0fb33fd6e0cc8e9500", size = 220421, upload_time = "2026-05-26T20:40:30.084Z" },
|
|
105
|
+
{ url = "https://files.pythonhosted.org/packages/5e/90/92aca9cf0acc95123c96cd1eb1f08917897a7f5dee01e15738922971ec31/coverage-7.14.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:12c42ec1e14f553c4f817e989365982e646e27211f10a0f717855b94a79c8906", size = 251466, upload_time = "2026-05-26T20:40:32.542Z" },
|
|
106
|
+
{ url = "https://files.pythonhosted.org/packages/26/2b/78048cbe3b999f6cbf9cc0d90abba6a88a3e0863a8c1c6cbc762f3f8802f/coverage-7.14.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:06144cd511cf2624873a035c5069cf297144f6e77a73ee3d7a55b605ec5efb42", size = 253973, upload_time = "2026-05-26T20:40:34.473Z" },
|
|
107
|
+
{ url = "https://files.pythonhosted.org/packages/8e/21/c2e33b29d1cfde484a19d437afc343c6cd30b08d78cbbf9f5aff14e57b2b/coverage-7.14.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a311d8e1da24be5c1ccf85cbfb06315dbaa1703d5a1eab3f6432c72b837917c8", size = 255318, upload_time = "2026-05-26T20:40:38.154Z" },
|
|
108
|
+
{ url = "https://files.pythonhosted.org/packages/8e/ee/aad2f108d63b769121005302f16bf66db8625c88ceaba466942e09a2607e/coverage-7.14.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c79cead5b5bc584d9c71451cb984d0e3a84e0c0937379c8efcbf27c8d661b851", size = 257633, upload_time = "2026-05-26T20:40:40.164Z" },
|
|
109
|
+
{ url = "https://files.pythonhosted.org/packages/c2/f8/11a2c29b4fd76d9849f81d0bb812ec0017a9396df3217214e38934a8c837/coverage-7.14.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:dcbf65f1f66a26cdd88c35cf68fb4729c5d1cd2e88added72420541dfb212034", size = 251488, upload_time = "2026-05-26T20:40:42.631Z" },
|
|
110
|
+
{ url = "https://files.pythonhosted.org/packages/c9/b8/9a5820de4b8ac2b71d85e3b5fb49108d7469c665f0e2ad0dd7569023e305/coverage-7.14.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fd86572566fb40189a8260446158235159bc7a82dfbc87a3b39cf4fb57fcec1c", size = 253329, upload_time = "2026-05-26T20:40:45.208Z" },
|
|
111
|
+
{ url = "https://files.pythonhosted.org/packages/6b/ff/f33e4823667e27548e8fd8df44217515303f9808d0ff29817db56f87d990/coverage-7.14.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:7771b601718fdde84832c3a434ca9bbf4ae9adbc49d84198b4110700c3c77c36", size = 251291, upload_time = "2026-05-26T20:40:47.502Z" },
|
|
112
|
+
{ url = "https://files.pythonhosted.org/packages/68/9b/489db0ebb209054766b90a9014a45f6d26eb724c02ec21311c3733b5a644/coverage-7.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:39b21e212c55af06fa375e3dbf90a8a8e38792f3a910c580066d23563830ddd5", size = 255564, upload_time = "2026-05-26T20:40:49.372Z" },
|
|
113
|
+
{ url = "https://files.pythonhosted.org/packages/27/b5/16bc2d4c2409b23c7737edb68c83bc89e345f378050549fe1d75ac7d34d5/coverage-7.14.1-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:f2302660e32562a532b442480121aef8aa61a5bdb20b30bf0adab29f10a5a4b4", size = 251107, upload_time = "2026-05-26T20:40:51.677Z" },
|
|
114
|
+
{ url = "https://files.pythonhosted.org/packages/7d/0c/2629997469a00cd069d588a41c9dc887610f2775ae89d250c4791e65272a/coverage-7.14.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:03a6f93c1ec3b7f2e77b5dbcc5573a2c21f12529a5c6bbe0f16f72303cc2fa4d", size = 252764, upload_time = "2026-05-26T20:40:54.267Z" },
|
|
115
|
+
{ url = "https://files.pythonhosted.org/packages/d2/ee/f78d63c8f079e0d7211c7e2401fa17e311514534ba61bae03e4b287ce4ab/coverage-7.14.1-cp314-cp314-win32.whl", hash = "sha256:8a3ce026d73290f42f08dafecbd82c193a74df280461fbf97300fec51fd133ee", size = 222837, upload_time = "2026-05-26T20:40:56.496Z" },
|
|
116
|
+
{ url = "https://files.pythonhosted.org/packages/dc/b9/be539854f93a70dfbeec69117f33ec70dc42ff0b65b5b07ab8d40d04228e/coverage-7.14.1-cp314-cp314-win_amd64.whl", hash = "sha256:114c95ef29302423b87d159075805f4ab973254a2638a5d7d046c94887cc87d7", size = 223650, upload_time = "2026-05-26T20:40:58.351Z" },
|
|
117
|
+
{ url = "https://files.pythonhosted.org/packages/fe/9e/24e2842fef40f35ac82ba3a7719c8023d011bf3bf652d0675316a9d088a1/coverage-7.14.1-cp314-cp314-win_arm64.whl", hash = "sha256:a07891c3f4805442b31b71e84ba3cf29ed1aa9a428284e06deeb4b23e5b46343", size = 222218, upload_time = "2026-05-26T20:41:00.321Z" },
|
|
118
|
+
{ url = "https://files.pythonhosted.org/packages/0a/1d/ac0a9df5fe31c1e8bdd658074905fc12844a05c1a7e3fdb8417e97c31e23/coverage-7.14.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1101a5ebb083aecb625ebb6209d4105b58f647b093cb2dc8122d7b33f743cfe1", size = 220822, upload_time = "2026-05-26T20:41:02.281Z" },
|
|
119
|
+
{ url = "https://files.pythonhosted.org/packages/32/cf/f964fd9aff20323f9f1a726c97135f8a76bcd87b92dad141a456a43f3c64/coverage-7.14.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:851b9e1e4e8a4608e77c79714b2e77c0970d2ed7202a05e92ae407817481887b", size = 221084, upload_time = "2026-05-26T20:41:04.593Z" },
|
|
120
|
+
{ url = "https://files.pythonhosted.org/packages/d8/5e/7e5ef2aba844de2b80d678619fcf0841b42e3f37f16411226f3fe4c1016f/coverage-7.14.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d5b89cdfb2ee051b71e8c3c70bd81a9eff81100f736a269136fe1a68efe00474", size = 262454, upload_time = "2026-05-26T20:41:06.641Z" },
|
|
121
|
+
{ url = "https://files.pythonhosted.org/packages/64/62/75809bded87015cc4935524218a2a8ed8dd1a8498bfed30a2f4f7a4b4d34/coverage-7.14.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:0177614a0370f227888b4e436a7c55686d6a9f90eb1ade2b624ba685a1686e86", size = 264578, upload_time = "2026-05-26T20:41:08.556Z" },
|
|
122
|
+
{ url = "https://files.pythonhosted.org/packages/f3/42/d33392dc14633525012d2d504fa1a33b05538bf535f5c1d64675e5754b78/coverage-7.14.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2d69af5dea2de76fc485a83032a630523f985198b7e25be901ec60181587b01e", size = 266981, upload_time = "2026-05-26T20:41:10.824Z" },
|
|
123
|
+
{ url = "https://files.pythonhosted.org/packages/2a/49/0157c4428c2aca7f1e09d5565930586fd5ae36f1655f08b0daa7cf1fcae1/coverage-7.14.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:35ab22d91de736e8966b980dc355cbcdd2c6dbbcfe275f9a2991bc8a91b3df65", size = 268112, upload_time = "2026-05-26T20:41:12.966Z" },
|
|
124
|
+
{ url = "https://files.pythonhosted.org/packages/96/26/86b9ce71f4092b1ed325ce1421698081df1286b833400b6836912834d6e0/coverage-7.14.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:357d4e32935c36588aaba057d734fa32428c360c9fc2e4442afbf1b646beee6e", size = 261558, upload_time = "2026-05-26T20:41:15Z" },
|
|
125
|
+
{ url = "https://files.pythonhosted.org/packages/20/4c/c311210c5472cf5401d8422b0d7812cdd520f24417673afabda6c323faca/coverage-7.14.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:51bd64741cc6fa065abd300ede1afe5a5291ece9c31da8b24884deda48bcc3f8", size = 264447, upload_time = "2026-05-26T20:41:17.369Z" },
|
|
126
|
+
{ url = "https://files.pythonhosted.org/packages/fb/71/59513f8710ed3e6b0ac0a050a5b7e977bb9c9e880354863b5d00d8809256/coverage-7.14.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:9132cd363a68a4c3daa7c8704a654b1e39d3360f6f5b8ddd470608a945236c07", size = 262048, upload_time = "2026-05-26T20:41:19.309Z" },
|
|
127
|
+
{ url = "https://files.pythonhosted.org/packages/84/8d/bceed32dc494f5bbf50f775cd2e78ca814953942b5ea28d3c1c3ac316f14/coverage-7.14.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:07c6290b1697b862c0478eab545eec949a0d0e4d6d03497f446d706da3b4f2de", size = 265781, upload_time = "2026-05-26T20:41:21.559Z" },
|
|
128
|
+
{ url = "https://files.pythonhosted.org/packages/e7/c5/9348fe40dbfd4991aaf78df2c6c3098bfb2cc834d1fd362a64b4efef855a/coverage-7.14.1-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:5ea0c297e27133853b4d8a3eb799bff5a2dbd9f2f41537a240d337ac9b4df890", size = 260896, upload_time = "2026-05-26T20:41:23.428Z" },
|
|
129
|
+
{ url = "https://files.pythonhosted.org/packages/ca/92/1ea0f03929da7cf87206b1fa24f4c8e9c158be0455481af29ec0a1f3503f/coverage-7.14.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:01b7733daad0237daa01ef80fe2dfceffc911e6a17fa7b55d14aa8214eaaaecd", size = 263214, upload_time = "2026-05-26T20:41:25.419Z" },
|
|
130
|
+
{ url = "https://files.pythonhosted.org/packages/f6/a9/b2493c054c0e01a643266742ab45e15744e60743f9260cd930c7142b1124/coverage-7.14.1-cp314-cp314t-win32.whl", hash = "sha256:6adc5a36984624a70bf11d7184e20fa0a49aa7c47ffab43804106a1a695ea22e", size = 223624, upload_time = "2026-05-26T20:41:27.795Z" },
|
|
131
|
+
{ url = "https://files.pythonhosted.org/packages/fc/bd/3e1e6a57fccd2d7c83fcdf338e93ba98eb85c6e877dd34731ac585375490/coverage-7.14.1-cp314-cp314t-win_amd64.whl", hash = "sha256:ddf799247318f34dbcd2efa8c95a8d0642674e926bb1774cf9b63dfd2a389d1c", size = 224728, upload_time = "2026-05-26T20:41:30.098Z" },
|
|
132
|
+
{ url = "https://files.pythonhosted.org/packages/bb/d7/31066cf1d2f0c6c797fce911bcfa01dd35642dc6da992a950256097c5860/coverage-7.14.1-cp314-cp314t-win_arm64.whl", hash = "sha256:145986fe66647eb489f18d9a997567a3fd358584c4b5a808769113abc07466af", size = 222752, upload_time = "2026-05-26T20:41:32.123Z" },
|
|
133
|
+
{ url = "https://files.pythonhosted.org/packages/8a/3c/1a983b9a745d7f83d53f057bcc5bf79ba6a2bbc08266b3f0c7d6fe630c9b/coverage-7.14.1-py3-none-any.whl", hash = "sha256:a252f21c27e38347e60111a3266b03827422a7d5525951aceee313aa68bab1d2", size = 211815, upload_time = "2026-05-26T20:41:34.078Z" },
|
|
134
|
+
]
|
|
135
|
+
|
|
67
136
|
[[package]]
|
|
68
137
|
name = "distlib"
|
|
69
138
|
version = "0.4.3"
|
|
@@ -75,7 +144,7 @@ wheels = [
|
|
|
75
144
|
|
|
76
145
|
[[package]]
|
|
77
146
|
name = "dsa-study"
|
|
78
|
-
version = "0.2
|
|
147
|
+
version = "0.4.2"
|
|
79
148
|
source = { editable = "." }
|
|
80
149
|
|
|
81
150
|
[package.dev-dependencies]
|
|
@@ -83,6 +152,7 @@ dev = [
|
|
|
83
152
|
{ name = "mypy" },
|
|
84
153
|
{ name = "pre-commit" },
|
|
85
154
|
{ name = "pytest" },
|
|
155
|
+
{ name = "pytest-cov" },
|
|
86
156
|
{ name = "ruff" },
|
|
87
157
|
]
|
|
88
158
|
|
|
@@ -93,6 +163,7 @@ dev = [
|
|
|
93
163
|
{ name = "mypy", specifier = ">=2.1.0" },
|
|
94
164
|
{ name = "pre-commit", specifier = ">=4.6.0" },
|
|
95
165
|
{ name = "pytest", specifier = ">=9.0.3" },
|
|
166
|
+
{ name = "pytest-cov", specifier = ">=7.1.0" },
|
|
96
167
|
{ name = "ruff", specifier = ">=0.15.17" },
|
|
97
168
|
]
|
|
98
169
|
|
|
@@ -302,6 +373,20 @@ wheels = [
|
|
|
302
373
|
{ url = "https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl", hash = "sha256:2c5efc453d45394fdd706ade797c0a81091eccd1d6e4bccfcd476e2b8e0ab5d9", size = 375249, upload_time = "2026-04-07T17:16:16.13Z" },
|
|
303
374
|
]
|
|
304
375
|
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "pytest-cov"
|
|
378
|
+
version = "7.1.0"
|
|
379
|
+
source = { registry = "https://pypi.org/simple" }
|
|
380
|
+
dependencies = [
|
|
381
|
+
{ name = "coverage" },
|
|
382
|
+
{ name = "pluggy" },
|
|
383
|
+
{ name = "pytest" },
|
|
384
|
+
]
|
|
385
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b1/51/a849f96e117386044471c8ec2bd6cfebacda285da9525c9106aeb28da671/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2", size = 55592, upload_time = "2026-03-21T20:11:16.284Z" }
|
|
386
|
+
wheels = [
|
|
387
|
+
{ url = "https://files.pythonhosted.org/packages/9d/7a/d968e294073affff457b041c2be9868a40c1c71f4a35fcc1e45e5493067b/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678", size = 22876, upload_time = "2026-03-21T20:11:14.438Z" },
|
|
388
|
+
]
|
|
389
|
+
|
|
305
390
|
[[package]]
|
|
306
391
|
name = "python-discovery"
|
|
307
392
|
version = "1.4.2"
|
|
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
|