effectual 0.7.6__tar.gz → 0.7.8__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {effectual-0.7.6 → effectual-0.7.8}/PKG-INFO +4 -3
- {effectual-0.7.6 → effectual-0.7.8}/README.md +3 -2
- {effectual-0.7.6 → effectual-0.7.8}/pyproject.toml +1 -1
- {effectual-0.7.6 → effectual-0.7.8}/src/effectual/build.py +10 -8
- {effectual-0.7.6 → effectual-0.7.8}/src/effectual/developer.py +1 -2
- {effectual-0.7.6 → effectual-0.7.8}/uv.lock +62 -56
- {effectual-0.7.6 → effectual-0.7.8}/.gitignore +0 -0
- {effectual-0.7.6 → effectual-0.7.8}/.python-version +0 -0
- {effectual-0.7.6 → effectual-0.7.8}/LICENSE +0 -0
- {effectual-0.7.6 → effectual-0.7.8}/src/effectual/__init__.py +0 -0
- {effectual-0.7.6 → effectual-0.7.8}/src/effectual/colors.py +0 -0
- {effectual-0.7.6 → effectual-0.7.8}/src/effectual/config.py +0 -0
- {effectual-0.7.6 → effectual-0.7.8}/src/effectual/transformations.py +0 -0
- {effectual-0.7.6 → effectual-0.7.8}/taskfile.yml +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: effectual
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.8
|
4
4
|
Summary: A python package/script bundler
|
5
5
|
Project-URL: Homepage, https://github.com/effectualpy/effectual
|
6
6
|
Author-email: jake <jakewdr@proton.me>
|
@@ -89,8 +89,9 @@ This is like what what [Rollup](https://rollupjs.org/) does for vite
|
|
89
89
|
|
90
90
|
- [Treeshaking](https://webpack.js.org/guides/tree-shaking/)
|
91
91
|
- Rewriting some time critical parts in Rust 🚀🦀
|
92
|
-
- Cross platform compatibility
|
93
|
-
-
|
92
|
+
- Cross platform compatibility (multiple output bundles)
|
93
|
+
- Bundle python version shebang and bytecode compilation
|
94
|
+
- Plugin and loader system (like rollup and webpack)
|
94
95
|
|
95
96
|
# Contributions
|
96
97
|
|
@@ -65,8 +65,9 @@ This is like what what [Rollup](https://rollupjs.org/) does for vite
|
|
65
65
|
|
66
66
|
- [Treeshaking](https://webpack.js.org/guides/tree-shaking/)
|
67
67
|
- Rewriting some time critical parts in Rust 🚀🦀
|
68
|
-
- Cross platform compatibility
|
69
|
-
-
|
68
|
+
- Cross platform compatibility (multiple output bundles)
|
69
|
+
- Bundle python version shebang and bytecode compilation
|
70
|
+
- Plugin and loader system (like rollup and webpack)
|
70
71
|
|
71
72
|
# Contributions
|
72
73
|
|
@@ -41,11 +41,17 @@ def bundleFiles(
|
|
41
41
|
cachePath: Path = Path("./.effectual_cache/cachedPackages")
|
42
42
|
if cachePath.exists():
|
43
43
|
if Path.iterdir(cachePath):
|
44
|
-
totalSize: int =
|
44
|
+
totalSize: int = sum(
|
45
|
+
cachedFile.stat().st_size
|
46
|
+
for cachedFile in cachePath.rglob("*")
|
47
|
+
if cachedFile.is_file()
|
48
|
+
)
|
49
|
+
print(
|
50
|
+
f"{tagColor('bundling')} || uv dependencies {folderColor(totalSize)}" # noqa: E501
|
51
|
+
)
|
45
52
|
for cachedFile in cachePath.rglob("*"):
|
46
53
|
if cachedFile.is_dir() and not any(cachedFile.iterdir()):
|
47
54
|
continue
|
48
|
-
totalSize += cachedFile.stat().st_size
|
49
55
|
stringCachedFile = str(cachedFile)
|
50
56
|
if (
|
51
57
|
cachedFile.suffix
|
@@ -61,10 +67,6 @@ def bundleFiles(
|
|
61
67
|
arcName: str = str(cachedFile.relative_to(cachePath))
|
62
68
|
bundler.write(cachedFile, arcname=arcName)
|
63
69
|
|
64
|
-
print(
|
65
|
-
f"{tagColor('bundling')} || uv dependencies {folderColor(totalSize)}" # noqa: E501
|
66
|
-
)
|
67
|
-
|
68
70
|
for pyFile in sourceDirectory.rglob("*.py"):
|
69
71
|
print(f"{tagColor('bundling')} || {pyFile.name} {fileColor(pyFile)}")
|
70
72
|
if minification:
|
@@ -141,8 +143,8 @@ def main() -> None:
|
|
141
143
|
|
142
144
|
Path("./.effectual_cache/").mkdir(parents=True, exist_ok=True)
|
143
145
|
currentHash["hashes"] = dict()
|
144
|
-
currentHash["hashes"]["pyproject"] = getHash("./pyproject.toml")
|
145
|
-
currentHash["hashes"]["lock"] = getHash("./uv.lock")
|
146
|
+
currentHash["hashes"]["pyproject"] = getHash(Path("./pyproject.toml"))
|
147
|
+
currentHash["hashes"]["lock"] = getHash(Path("./uv.lock"))
|
146
148
|
|
147
149
|
freshHash: bool = False
|
148
150
|
|
@@ -43,10 +43,9 @@ def main() -> None:
|
|
43
43
|
bundle(sourceDirectory, outputFile)
|
44
44
|
runCommand = subprocess.Popen(["uv", "run", outputFile], shell=True)
|
45
45
|
|
46
|
-
pidSet: set = set()
|
46
|
+
pidSet: set[Any] = set()
|
47
47
|
|
48
48
|
for change in watch(sourceDirectory, debounce=600):
|
49
|
-
print(pidSet)
|
50
49
|
print(f"{tagColor('reloaded')} || file change detected")
|
51
50
|
for pid in pidSet.copy():
|
52
51
|
try:
|
@@ -18,14 +18,14 @@ wheels = [
|
|
18
18
|
|
19
19
|
[[package]]
|
20
20
|
name = "click"
|
21
|
-
version = "8.1.
|
21
|
+
version = "8.1.8"
|
22
22
|
source = { registry = "https://pypi.org/simple" }
|
23
23
|
dependencies = [
|
24
24
|
{ name = "colorama", marker = "platform_system == 'Windows'" },
|
25
25
|
]
|
26
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
26
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593 }
|
27
27
|
wheels = [
|
28
|
-
{ url = "https://files.pythonhosted.org/packages/
|
28
|
+
{ url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188 },
|
29
29
|
]
|
30
30
|
|
31
31
|
[[package]]
|
@@ -39,7 +39,7 @@ wheels = [
|
|
39
39
|
|
40
40
|
[[package]]
|
41
41
|
name = "effectual"
|
42
|
-
version = "0.7.
|
42
|
+
version = "0.7.8"
|
43
43
|
source = { editable = "." }
|
44
44
|
dependencies = [
|
45
45
|
{ name = "click" },
|
@@ -92,46 +92,52 @@ wheels = [
|
|
92
92
|
|
93
93
|
[[package]]
|
94
94
|
name = "mypy"
|
95
|
-
version = "1.
|
95
|
+
version = "1.14.1"
|
96
96
|
source = { registry = "https://pypi.org/simple" }
|
97
97
|
dependencies = [
|
98
98
|
{ name = "mypy-extensions" },
|
99
99
|
{ name = "tomli", marker = "python_full_version < '3.11'" },
|
100
100
|
{ name = "typing-extensions" },
|
101
101
|
]
|
102
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
102
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b9/eb/2c92d8ea1e684440f54fa49ac5d9a5f19967b7b472a281f419e69a8d228e/mypy-1.14.1.tar.gz", hash = "sha256:7ec88144fe9b510e8475ec2f5f251992690fcf89ccb4500b214b4226abcd32d6", size = 3216051 }
|
103
103
|
wheels = [
|
104
|
-
{ url = "https://files.pythonhosted.org/packages/
|
105
|
-
{ url = "https://files.pythonhosted.org/packages/
|
106
|
-
{ url = "https://files.pythonhosted.org/packages/
|
107
|
-
{ url = "https://files.pythonhosted.org/packages/
|
108
|
-
{ url = "https://files.pythonhosted.org/packages/
|
109
|
-
{ url = "https://files.pythonhosted.org/packages/
|
110
|
-
{ url = "https://files.pythonhosted.org/packages/
|
111
|
-
{ url = "https://files.pythonhosted.org/packages/
|
112
|
-
{ url = "https://files.pythonhosted.org/packages/
|
113
|
-
{ url = "https://files.pythonhosted.org/packages/
|
114
|
-
{ url = "https://files.pythonhosted.org/packages/
|
115
|
-
{ url = "https://files.pythonhosted.org/packages/
|
116
|
-
{ url = "https://files.pythonhosted.org/packages/
|
117
|
-
{ url = "https://files.pythonhosted.org/packages/
|
118
|
-
{ url = "https://files.pythonhosted.org/packages/
|
119
|
-
{ url = "https://files.pythonhosted.org/packages/
|
120
|
-
{ url = "https://files.pythonhosted.org/packages/
|
121
|
-
{ url = "https://files.pythonhosted.org/packages/
|
122
|
-
{ url = "https://files.pythonhosted.org/packages/
|
123
|
-
{ url = "https://files.pythonhosted.org/packages/
|
124
|
-
{ url = "https://files.pythonhosted.org/packages/
|
125
|
-
{ url = "https://files.pythonhosted.org/packages/
|
126
|
-
{ url = "https://files.pythonhosted.org/packages/
|
127
|
-
{ url = "https://files.pythonhosted.org/packages/
|
128
|
-
{ url = "https://files.pythonhosted.org/packages/
|
129
|
-
{ url = "https://files.pythonhosted.org/packages/
|
130
|
-
{ url = "https://files.pythonhosted.org/packages/
|
131
|
-
{ url = "https://files.pythonhosted.org/packages/
|
132
|
-
{ url = "https://files.pythonhosted.org/packages/
|
133
|
-
{ url = "https://files.pythonhosted.org/packages/
|
134
|
-
{ url = "https://files.pythonhosted.org/packages/
|
104
|
+
{ url = "https://files.pythonhosted.org/packages/9b/7a/87ae2adb31d68402da6da1e5f30c07ea6063e9f09b5e7cfc9dfa44075e74/mypy-1.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:52686e37cf13d559f668aa398dd7ddf1f92c5d613e4f8cb262be2fb4fedb0fcb", size = 11211002 },
|
105
|
+
{ url = "https://files.pythonhosted.org/packages/e1/23/eada4c38608b444618a132be0d199b280049ded278b24cbb9d3fc59658e4/mypy-1.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1fb545ca340537d4b45d3eecdb3def05e913299ca72c290326be19b3804b39c0", size = 10358400 },
|
106
|
+
{ url = "https://files.pythonhosted.org/packages/43/c9/d6785c6f66241c62fd2992b05057f404237deaad1566545e9f144ced07f5/mypy-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:90716d8b2d1f4cd503309788e51366f07c56635a3309b0f6a32547eaaa36a64d", size = 12095172 },
|
107
|
+
{ url = "https://files.pythonhosted.org/packages/c3/62/daa7e787770c83c52ce2aaf1a111eae5893de9e004743f51bfcad9e487ec/mypy-1.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2ae753f5c9fef278bcf12e1a564351764f2a6da579d4a81347e1d5a15819997b", size = 12828732 },
|
108
|
+
{ url = "https://files.pythonhosted.org/packages/1b/a2/5fb18318a3637f29f16f4e41340b795da14f4751ef4f51c99ff39ab62e52/mypy-1.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e0fe0f5feaafcb04505bcf439e991c6d8f1bf8b15f12b05feeed96e9e7bf1427", size = 13012197 },
|
109
|
+
{ url = "https://files.pythonhosted.org/packages/28/99/e153ce39105d164b5f02c06c35c7ba958aaff50a2babba7d080988b03fe7/mypy-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:7d54bd85b925e501c555a3227f3ec0cfc54ee8b6930bd6141ec872d1c572f81f", size = 9780836 },
|
110
|
+
{ url = "https://files.pythonhosted.org/packages/da/11/a9422850fd506edbcdc7f6090682ecceaf1f87b9dd847f9df79942da8506/mypy-1.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f995e511de847791c3b11ed90084a7a0aafdc074ab88c5a9711622fe4751138c", size = 11120432 },
|
111
|
+
{ url = "https://files.pythonhosted.org/packages/b6/9e/47e450fd39078d9c02d620545b2cb37993a8a8bdf7db3652ace2f80521ca/mypy-1.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d64169ec3b8461311f8ce2fd2eb5d33e2d0f2c7b49116259c51d0d96edee48d1", size = 10279515 },
|
112
|
+
{ url = "https://files.pythonhosted.org/packages/01/b5/6c8d33bd0f851a7692a8bfe4ee75eb82b6983a3cf39e5e32a5d2a723f0c1/mypy-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ba24549de7b89b6381b91fbc068d798192b1b5201987070319889e93038967a8", size = 12025791 },
|
113
|
+
{ url = "https://files.pythonhosted.org/packages/f0/4c/e10e2c46ea37cab5c471d0ddaaa9a434dc1d28650078ac1b56c2d7b9b2e4/mypy-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:183cf0a45457d28ff9d758730cd0210419ac27d4d3f285beda038c9083363b1f", size = 12749203 },
|
114
|
+
{ url = "https://files.pythonhosted.org/packages/88/55/beacb0c69beab2153a0f57671ec07861d27d735a0faff135a494cd4f5020/mypy-1.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f2a0ecc86378f45347f586e4163d1769dd81c5a223d577fe351f26b179e148b1", size = 12885900 },
|
115
|
+
{ url = "https://files.pythonhosted.org/packages/a2/75/8c93ff7f315c4d086a2dfcde02f713004357d70a163eddb6c56a6a5eff40/mypy-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:ad3301ebebec9e8ee7135d8e3109ca76c23752bac1e717bc84cd3836b4bf3eae", size = 9777869 },
|
116
|
+
{ url = "https://files.pythonhosted.org/packages/43/1b/b38c079609bb4627905b74fc6a49849835acf68547ac33d8ceb707de5f52/mypy-1.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:30ff5ef8519bbc2e18b3b54521ec319513a26f1bba19a7582e7b1f58a6e69f14", size = 11266668 },
|
117
|
+
{ url = "https://files.pythonhosted.org/packages/6b/75/2ed0d2964c1ffc9971c729f7a544e9cd34b2cdabbe2d11afd148d7838aa2/mypy-1.14.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cb9f255c18052343c70234907e2e532bc7e55a62565d64536dbc7706a20b78b9", size = 10254060 },
|
118
|
+
{ url = "https://files.pythonhosted.org/packages/a1/5f/7b8051552d4da3c51bbe8fcafffd76a6823779101a2b198d80886cd8f08e/mypy-1.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b4e3413e0bddea671012b063e27591b953d653209e7a4fa5e48759cda77ca11", size = 11933167 },
|
119
|
+
{ url = "https://files.pythonhosted.org/packages/04/90/f53971d3ac39d8b68bbaab9a4c6c58c8caa4d5fd3d587d16f5927eeeabe1/mypy-1.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:553c293b1fbdebb6c3c4030589dab9fafb6dfa768995a453d8a5d3b23784af2e", size = 12864341 },
|
120
|
+
{ url = "https://files.pythonhosted.org/packages/03/d2/8bc0aeaaf2e88c977db41583559319f1821c069e943ada2701e86d0430b7/mypy-1.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fad79bfe3b65fe6a1efaed97b445c3d37f7be9fdc348bdb2d7cac75579607c89", size = 12972991 },
|
121
|
+
{ url = "https://files.pythonhosted.org/packages/6f/17/07815114b903b49b0f2cf7499f1c130e5aa459411596668267535fe9243c/mypy-1.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:8fa2220e54d2946e94ab6dbb3ba0a992795bd68b16dc852db33028df2b00191b", size = 9879016 },
|
122
|
+
{ url = "https://files.pythonhosted.org/packages/9e/15/bb6a686901f59222275ab228453de741185f9d54fecbaacec041679496c6/mypy-1.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:92c3ed5afb06c3a8e188cb5da4984cab9ec9a77ba956ee419c68a388b4595255", size = 11252097 },
|
123
|
+
{ url = "https://files.pythonhosted.org/packages/f8/b3/8b0f74dfd072c802b7fa368829defdf3ee1566ba74c32a2cb2403f68024c/mypy-1.14.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dbec574648b3e25f43d23577309b16534431db4ddc09fda50841f1e34e64ed34", size = 10239728 },
|
124
|
+
{ url = "https://files.pythonhosted.org/packages/c5/9b/4fd95ab20c52bb5b8c03cc49169be5905d931de17edfe4d9d2986800b52e/mypy-1.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8c6d94b16d62eb3e947281aa7347d78236688e21081f11de976376cf010eb31a", size = 11924965 },
|
125
|
+
{ url = "https://files.pythonhosted.org/packages/56/9d/4a236b9c57f5d8f08ed346914b3f091a62dd7e19336b2b2a0d85485f82ff/mypy-1.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d4b19b03fdf54f3c5b2fa474c56b4c13c9dbfb9a2db4370ede7ec11a2c5927d9", size = 12867660 },
|
126
|
+
{ url = "https://files.pythonhosted.org/packages/40/88/a61a5497e2f68d9027de2bb139c7bb9abaeb1be1584649fa9d807f80a338/mypy-1.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0c911fde686394753fff899c409fd4e16e9b294c24bfd5e1ea4675deae1ac6fd", size = 12969198 },
|
127
|
+
{ url = "https://files.pythonhosted.org/packages/54/da/3d6fc5d92d324701b0c23fb413c853892bfe0e1dbe06c9138037d459756b/mypy-1.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:8b21525cb51671219f5307be85f7e646a153e5acc656e5cebf64bfa076c50107", size = 9885276 },
|
128
|
+
{ url = "https://files.pythonhosted.org/packages/39/02/1817328c1372be57c16148ce7d2bfcfa4a796bedaed897381b1aad9b267c/mypy-1.14.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7084fb8f1128c76cd9cf68fe5971b37072598e7c31b2f9f95586b65c741a9d31", size = 11143050 },
|
129
|
+
{ url = "https://files.pythonhosted.org/packages/b9/07/99db9a95ece5e58eee1dd87ca456a7e7b5ced6798fd78182c59c35a7587b/mypy-1.14.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8f845a00b4f420f693f870eaee5f3e2692fa84cc8514496114649cfa8fd5e2c6", size = 10321087 },
|
130
|
+
{ url = "https://files.pythonhosted.org/packages/9a/eb/85ea6086227b84bce79b3baf7f465b4732e0785830726ce4a51528173b71/mypy-1.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:44bf464499f0e3a2d14d58b54674dee25c031703b2ffc35064bd0df2e0fac319", size = 12066766 },
|
131
|
+
{ url = "https://files.pythonhosted.org/packages/4b/bb/f01bebf76811475d66359c259eabe40766d2f8ac8b8250d4e224bb6df379/mypy-1.14.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c99f27732c0b7dc847adb21c9d47ce57eb48fa33a17bc6d7d5c5e9f9e7ae5bac", size = 12787111 },
|
132
|
+
{ url = "https://files.pythonhosted.org/packages/2f/c9/84837ff891edcb6dcc3c27d85ea52aab0c4a34740ff5f0ccc0eb87c56139/mypy-1.14.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:bce23c7377b43602baa0bd22ea3265c49b9ff0b76eb315d6c34721af4cdf1d9b", size = 12974331 },
|
133
|
+
{ url = "https://files.pythonhosted.org/packages/84/5f/901e18464e6a13f8949b4909535be3fa7f823291b8ab4e4b36cfe57d6769/mypy-1.14.1-cp38-cp38-win_amd64.whl", hash = "sha256:8edc07eeade7ebc771ff9cf6b211b9a7d93687ff892150cb5692e4f4272b0837", size = 9763210 },
|
134
|
+
{ url = "https://files.pythonhosted.org/packages/ca/1f/186d133ae2514633f8558e78cd658070ba686c0e9275c5a5c24a1e1f0d67/mypy-1.14.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3888a1816d69f7ab92092f785a462944b3ca16d7c470d564165fe703b0970c35", size = 11200493 },
|
135
|
+
{ url = "https://files.pythonhosted.org/packages/af/fc/4842485d034e38a4646cccd1369f6b1ccd7bc86989c52770d75d719a9941/mypy-1.14.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:46c756a444117c43ee984bd055db99e498bc613a70bbbc120272bd13ca579fbc", size = 10357702 },
|
136
|
+
{ url = "https://files.pythonhosted.org/packages/b4/e6/457b83f2d701e23869cfec013a48a12638f75b9d37612a9ddf99072c1051/mypy-1.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:27fc248022907e72abfd8e22ab1f10e903915ff69961174784a3900a8cba9ad9", size = 12091104 },
|
137
|
+
{ url = "https://files.pythonhosted.org/packages/f1/bf/76a569158db678fee59f4fd30b8e7a0d75bcbaeef49edd882a0d63af6d66/mypy-1.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:499d6a72fb7e5de92218db961f1a66d5f11783f9ae549d214617edab5d4dbdbb", size = 12830167 },
|
138
|
+
{ url = "https://files.pythonhosted.org/packages/43/bc/0bc6b694b3103de9fed61867f1c8bd33336b913d16831431e7cb48ef1c92/mypy-1.14.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:57961db9795eb566dc1d1b4e9139ebc4c6b0cb6e7254ecde69d1552bf7613f60", size = 13013834 },
|
139
|
+
{ url = "https://files.pythonhosted.org/packages/b0/79/5f5ec47849b6df1e6943d5fd8e6632fbfc04b4fd4acfa5a5a9535d11b4e2/mypy-1.14.1-cp39-cp39-win_amd64.whl", hash = "sha256:07ba89fdcc9451f2ebb02853deb6aaaa3d2239a236669a63ab3801bbf923ef5c", size = 9781231 },
|
140
|
+
{ url = "https://files.pythonhosted.org/packages/a0/b5/32dd67b69a16d088e533962e5044e51004176a9952419de0370cdaead0f8/mypy-1.14.1-py3-none-any.whl", hash = "sha256:b66a60cc4073aeb8ae00057f9c1f64d49e90f918fbcef9a977eb121da8b8f1d1", size = 2752905 },
|
135
141
|
]
|
136
142
|
|
137
143
|
[[package]]
|
@@ -224,27 +230,27 @@ wheels = [
|
|
224
230
|
|
225
231
|
[[package]]
|
226
232
|
name = "ruff"
|
227
|
-
version = "0.8.
|
233
|
+
version = "0.8.4"
|
228
234
|
source = { registry = "https://pypi.org/simple" }
|
229
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
235
|
+
sdist = { url = "https://files.pythonhosted.org/packages/34/37/9c02181ef38d55b77d97c68b78e705fd14c0de0e5d085202bb2b52ce5be9/ruff-0.8.4.tar.gz", hash = "sha256:0d5f89f254836799af1615798caa5f80b7f935d7a670fad66c5007928e57ace8", size = 3402103 }
|
230
236
|
wheels = [
|
231
|
-
{ url = "https://files.pythonhosted.org/packages/
|
232
|
-
{ url = "https://files.pythonhosted.org/packages/
|
233
|
-
{ url = "https://files.pythonhosted.org/packages/
|
234
|
-
{ url = "https://files.pythonhosted.org/packages/
|
235
|
-
{ url = "https://files.pythonhosted.org/packages/
|
236
|
-
{ url = "https://files.pythonhosted.org/packages/
|
237
|
-
{ url = "https://files.pythonhosted.org/packages/
|
238
|
-
{ url = "https://files.pythonhosted.org/packages/
|
239
|
-
{ url = "https://files.pythonhosted.org/packages/
|
240
|
-
{ url = "https://files.pythonhosted.org/packages/
|
241
|
-
{ url = "https://files.pythonhosted.org/packages/
|
242
|
-
{ url = "https://files.pythonhosted.org/packages/
|
243
|
-
{ url = "https://files.pythonhosted.org/packages/
|
244
|
-
{ url = "https://files.pythonhosted.org/packages/
|
245
|
-
{ url = "https://files.pythonhosted.org/packages/
|
246
|
-
{ url = "https://files.pythonhosted.org/packages/
|
247
|
-
{ url = "https://files.pythonhosted.org/packages/
|
237
|
+
{ url = "https://files.pythonhosted.org/packages/05/67/f480bf2f2723b2e49af38ed2be75ccdb2798fca7d56279b585c8f553aaab/ruff-0.8.4-py3-none-linux_armv6l.whl", hash = "sha256:58072f0c06080276804c6a4e21a9045a706584a958e644353603d36ca1eb8a60", size = 10546415 },
|
238
|
+
{ url = "https://files.pythonhosted.org/packages/eb/7a/5aba20312c73f1ce61814e520d1920edf68ca3b9c507bd84d8546a8ecaa8/ruff-0.8.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ffb60904651c00a1e0b8df594591770018a0f04587f7deeb3838344fe3adabac", size = 10346113 },
|
239
|
+
{ url = "https://files.pythonhosted.org/packages/76/f4/c41de22b3728486f0aa95383a44c42657b2db4062f3234ca36fc8cf52d8b/ruff-0.8.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:6ddf5d654ac0d44389f6bf05cee4caeefc3132a64b58ea46738111d687352296", size = 9943564 },
|
240
|
+
{ url = "https://files.pythonhosted.org/packages/0e/f0/afa0d2191af495ac82d4cbbfd7a94e3df6f62a04ca412033e073b871fc6d/ruff-0.8.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e248b1f0fa2749edd3350a2a342b67b43a2627434c059a063418e3d375cfe643", size = 10805522 },
|
241
|
+
{ url = "https://files.pythonhosted.org/packages/12/57/5d1e9a0fd0c228e663894e8e3a8e7063e5ee90f8e8e60cf2085f362bfa1a/ruff-0.8.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf197b98ed86e417412ee3b6c893f44c8864f816451441483253d5ff22c0e81e", size = 10306763 },
|
242
|
+
{ url = "https://files.pythonhosted.org/packages/04/df/f069fdb02e408be8aac6853583572a2873f87f866fe8515de65873caf6b8/ruff-0.8.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c41319b85faa3aadd4d30cb1cffdd9ac6b89704ff79f7664b853785b48eccdf3", size = 11359574 },
|
243
|
+
{ url = "https://files.pythonhosted.org/packages/d3/04/37c27494cd02e4a8315680debfc6dfabcb97e597c07cce0044db1f9dfbe2/ruff-0.8.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:9f8402b7c4f96463f135e936d9ab77b65711fcd5d72e5d67597b543bbb43cf3f", size = 12094851 },
|
244
|
+
{ url = "https://files.pythonhosted.org/packages/81/b1/c5d7fb68506cab9832d208d03ea4668da9a9887a4a392f4f328b1bf734ad/ruff-0.8.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4e56b3baa9c23d324ead112a4fdf20db9a3f8f29eeabff1355114dd96014604", size = 11655539 },
|
245
|
+
{ url = "https://files.pythonhosted.org/packages/ef/38/8f8f2c8898dc8a7a49bc340cf6f00226917f0f5cb489e37075bcb2ce3671/ruff-0.8.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:736272574e97157f7edbbb43b1d046125fce9e7d8d583d5d65d0c9bf2c15addf", size = 12912805 },
|
246
|
+
{ url = "https://files.pythonhosted.org/packages/06/dd/fa6660c279f4eb320788876d0cff4ea18d9af7d9ed7216d7bd66877468d0/ruff-0.8.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5fe710ab6061592521f902fca7ebcb9fabd27bc7c57c764298b1c1f15fff720", size = 11205976 },
|
247
|
+
{ url = "https://files.pythonhosted.org/packages/a8/d7/de94cc89833b5de455750686c17c9e10f4e1ab7ccdc5521b8fe911d1477e/ruff-0.8.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:13e9ec6d6b55f6da412d59953d65d66e760d583dd3c1c72bf1f26435b5bfdbae", size = 10792039 },
|
248
|
+
{ url = "https://files.pythonhosted.org/packages/6d/15/3e4906559248bdbb74854af684314608297a05b996062c9d72e0ef7c7097/ruff-0.8.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:97d9aefef725348ad77d6db98b726cfdb075a40b936c7984088804dfd38268a7", size = 10400088 },
|
249
|
+
{ url = "https://files.pythonhosted.org/packages/a2/21/9ed4c0e8133cb4a87a18d470f534ad1a8a66d7bec493bcb8bda2d1a5d5be/ruff-0.8.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:ab78e33325a6f5374e04c2ab924a3367d69a0da36f8c9cb6b894a62017506111", size = 10900814 },
|
250
|
+
{ url = "https://files.pythonhosted.org/packages/0d/5d/122a65a18955bd9da2616b69bc839351f8baf23b2805b543aa2f0aed72b5/ruff-0.8.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:8ef06f66f4a05c3ddbc9121a8b0cecccd92c5bf3dd43b5472ffe40b8ca10f0f8", size = 11268828 },
|
251
|
+
{ url = "https://files.pythonhosted.org/packages/43/a9/1676ee9106995381e3d34bccac5bb28df70194167337ed4854c20f27c7ba/ruff-0.8.4-py3-none-win32.whl", hash = "sha256:552fb6d861320958ca5e15f28b20a3d071aa83b93caee33a87b471f99a6c0835", size = 8805621 },
|
252
|
+
{ url = "https://files.pythonhosted.org/packages/10/98/ed6b56a30ee76771c193ff7ceeaf1d2acc98d33a1a27b8479cbdb5c17a23/ruff-0.8.4-py3-none-win_amd64.whl", hash = "sha256:f21a1143776f8656d7f364bd264a9d60f01b7f52243fbe90e7670c0dfe0cf65d", size = 9660086 },
|
253
|
+
{ url = "https://files.pythonhosted.org/packages/13/9f/026e18ca7d7766783d779dae5e9c656746c6ede36ef73c6d934aaf4a6dec/ruff-0.8.4-py3-none-win_arm64.whl", hash = "sha256:9183dd615d8df50defa8b1d9a074053891ba39025cf5ae88e8bcb52edcc4bf08", size = 9074500 },
|
248
254
|
]
|
249
255
|
|
250
256
|
[[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
|