effectual 0.7.5__tar.gz → 0.7.7__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {effectual-0.7.5 → effectual-0.7.7}/PKG-INFO +7 -5
- {effectual-0.7.5 → effectual-0.7.7}/README.md +3 -2
- {effectual-0.7.5 → effectual-0.7.7}/pyproject.toml +1 -1
- {effectual-0.7.5 → effectual-0.7.7}/src/effectual/build.py +8 -6
- {effectual-0.7.5 → effectual-0.7.7}/src/effectual/developer.py +13 -3
- {effectual-0.7.5 → effectual-0.7.7}/uv.lock +53 -53
- {effectual-0.7.5 → effectual-0.7.7}/.gitignore +0 -0
- {effectual-0.7.5 → effectual-0.7.7}/.python-version +0 -0
- {effectual-0.7.5 → effectual-0.7.7}/LICENSE +0 -0
- {effectual-0.7.5 → effectual-0.7.7}/src/effectual/__init__.py +0 -0
- {effectual-0.7.5 → effectual-0.7.7}/src/effectual/colors.py +0 -0
- {effectual-0.7.5 → effectual-0.7.7}/src/effectual/config.py +0 -0
- {effectual-0.7.5 → effectual-0.7.7}/src/effectual/transformations.py +0 -0
- {effectual-0.7.5 → effectual-0.7.7}/taskfile.yml +0 -0
@@ -1,10 +1,11 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: effectual
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.7
|
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>
|
7
|
-
License: MIT
|
7
|
+
License-Expression: MIT
|
8
|
+
License-File: LICENSE
|
8
9
|
Classifier: Programming Language :: Python :: 3.8
|
9
10
|
Classifier: Programming Language :: Python :: 3.9
|
10
11
|
Classifier: Programming Language :: Python :: 3.10
|
@@ -88,8 +89,9 @@ This is like what what [Rollup](https://rollupjs.org/) does for vite
|
|
88
89
|
|
89
90
|
- [Treeshaking](https://webpack.js.org/guides/tree-shaking/)
|
90
91
|
- Rewriting some time critical parts in Rust 🚀🦀
|
91
|
-
- Cross platform compatibility
|
92
|
-
-
|
92
|
+
- Cross platform compatibility (multiple output bundles)
|
93
|
+
- Bundle python version shebang and bytecode compilation
|
94
|
+
- Plugin and loader system (like rollup and webpack)
|
93
95
|
|
94
96
|
# Contributions
|
95
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:
|
@@ -1,3 +1,5 @@
|
|
1
|
+
import os
|
2
|
+
import signal
|
1
3
|
import subprocess
|
2
4
|
import time
|
3
5
|
import zipfile
|
@@ -41,12 +43,20 @@ def main() -> None:
|
|
41
43
|
bundle(sourceDirectory, outputFile)
|
42
44
|
runCommand = subprocess.Popen(["uv", "run", outputFile], shell=True)
|
43
45
|
|
44
|
-
|
46
|
+
pidSet: set = set()
|
47
|
+
|
48
|
+
for change in watch(sourceDirectory, debounce=600):
|
49
|
+
print(pidSet)
|
45
50
|
print(f"{tagColor('reloaded')} || file change detected")
|
46
|
-
|
47
|
-
|
51
|
+
for pid in pidSet.copy():
|
52
|
+
try:
|
53
|
+
os.kill(pid, signal.SIGTERM)
|
54
|
+
except OSError:
|
55
|
+
pass
|
56
|
+
pidSet.remove(pid)
|
48
57
|
bundle(sourceDirectory, outputFile)
|
49
58
|
runCommand = subprocess.Popen(["uv", "run", outputFile], shell=True)
|
59
|
+
pidSet.add(runCommand.pid)
|
50
60
|
|
51
61
|
|
52
62
|
if __name__ == "__main__":
|
@@ -39,7 +39,7 @@ wheels = [
|
|
39
39
|
|
40
40
|
[[package]]
|
41
41
|
name = "effectual"
|
42
|
-
version = "0.7.
|
42
|
+
version = "0.7.7"
|
43
43
|
source = { editable = "." }
|
44
44
|
dependencies = [
|
45
45
|
{ name = "click" },
|
@@ -92,46 +92,46 @@ wheels = [
|
|
92
92
|
|
93
93
|
[[package]]
|
94
94
|
name = "mypy"
|
95
|
-
version = "1.
|
95
|
+
version = "1.14.0"
|
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/8c/7b/08046ef9330735f536a09a2e31b00f42bccdb2795dcd979636ba43bb2d63/mypy-1.14.0.tar.gz", hash = "sha256:822dbd184d4a9804df5a7d5335a68cf7662930e70b8c1bc976645d1509f9a9d6", size = 3215684 }
|
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/ef/97/f00ded038482230e0beaaa08f9c5483a54530b362ad1b0d752d5d2b2f211/mypy-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e971c1c667007f9f2b397ffa80fa8e1e0adccff336e5e77e74cb5f22868bee87", size = 11207956 },
|
105
|
+
{ url = "https://files.pythonhosted.org/packages/68/67/8b4db0da19c9e3fa6264e948f1c135ab4dd45bede1809f4fdb613dc119f6/mypy-1.14.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e86aaeaa3221a278c66d3d673b297232947d873773d61ca3ee0e28b2ff027179", size = 10363681 },
|
106
|
+
{ url = "https://files.pythonhosted.org/packages/f5/00/56b1619ff1f3fcad2d411eccda60d74d20e73bda39c218d5ad2769980682/mypy-1.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1628c5c3ce823d296e41e2984ff88c5861499041cb416a8809615d0c1f41740e", size = 12832976 },
|
107
|
+
{ url = "https://files.pythonhosted.org/packages/e7/8b/9247838774b0bd865f190cc221822212091317f16310305ef924d9772532/mypy-1.14.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7fadb29b77fc14a0dd81304ed73c828c3e5cde0016c7e668a86a3e0dfc9f3af3", size = 13013704 },
|
108
|
+
{ url = "https://files.pythonhosted.org/packages/b2/69/0c0868a6f3d9761d2f704d1fb6ef84d75998c27d342738a8b20f109a411f/mypy-1.14.0-cp310-cp310-win_amd64.whl", hash = "sha256:3fa76988dc760da377c1e5069200a50d9eaaccf34f4ea18428a3337034ab5a44", size = 9782230 },
|
109
|
+
{ url = "https://files.pythonhosted.org/packages/34/c1/b9dd3e955953aec1c728992545b7877c9f6fa742a623ce4c200da0f62540/mypy-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6e73c8a154eed31db3445fe28f63ad2d97b674b911c00191416cf7f6459fd49a", size = 11121032 },
|
110
|
+
{ url = "https://files.pythonhosted.org/packages/ee/96/c52d5d516819ab95bf41f4a1ada828a3decc302f8c152ff4fc5feb0e4529/mypy-1.14.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:273e70fcb2e38c5405a188425aa60b984ffdcef65d6c746ea5813024b68c73dc", size = 10286294 },
|
111
|
+
{ url = "https://files.pythonhosted.org/packages/69/2c/3dbe51877a24daa467f8d8631f9ffd1aabbf0f6d9367a01c44a59df81fe0/mypy-1.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1daca283d732943731a6a9f20fdbcaa927f160bc51602b1d4ef880a6fb252015", size = 12746528 },
|
112
|
+
{ url = "https://files.pythonhosted.org/packages/a1/a8/eb20cde4ba9c4c3e20d958918a7c5d92210f4d1a0200c27de9a641f70996/mypy-1.14.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7e68047bedb04c1c25bba9901ea46ff60d5eaac2d71b1f2161f33107e2b368eb", size = 12883489 },
|
113
|
+
{ url = "https://files.pythonhosted.org/packages/91/17/a1fc6c70f31d52c99299320cf81c3cb2c6b91ec7269414e0718a6d138e34/mypy-1.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:7a52f26b9c9b1664a60d87675f3bae00b5c7f2806e0c2800545a32c325920bcc", size = 9780113 },
|
114
|
+
{ url = "https://files.pythonhosted.org/packages/fe/d8/0e72175ee0253217f5c44524f5e95251c02e95ba9749fb87b0e2074d203a/mypy-1.14.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d5326ab70a6db8e856d59ad4cb72741124950cbbf32e7b70e30166ba7bbf61dd", size = 11269011 },
|
115
|
+
{ url = "https://files.pythonhosted.org/packages/e9/6d/4ea13839dabe5db588dc6a1b766da16f420d33cf118a7b7172cdf6c7fcb2/mypy-1.14.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bf4ec4980bec1e0e24e5075f449d014011527ae0055884c7e3abc6a99cd2c7f1", size = 10253076 },
|
116
|
+
{ url = "https://files.pythonhosted.org/packages/3e/38/7db2c5d0f4d290e998f7a52b2e2616c7bbad96b8e04278ab09d11978a29e/mypy-1.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:390dfb898239c25289495500f12fa73aa7f24a4c6d90ccdc165762462b998d63", size = 12862786 },
|
117
|
+
{ url = "https://files.pythonhosted.org/packages/bf/4b/62d59c801b34141040989949c2b5c157d0408b45357335d3ec5b2845b0f6/mypy-1.14.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7e026d55ddcd76e29e87865c08cbe2d0104e2b3153a523c529de584759379d3d", size = 12971568 },
|
118
|
+
{ url = "https://files.pythonhosted.org/packages/f1/9c/e0f281b32d70c87b9e4d2939e302b1ff77ada4d7b0f2fb32890c144bc1d6/mypy-1.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:585ed36031d0b3ee362e5107ef449a8b5dfd4e9c90ccbe36414ee405ee6b32ba", size = 9879477 },
|
119
|
+
{ url = "https://files.pythonhosted.org/packages/13/33/8380efd0ebdfdfac7fc0bf065f03a049800ca1e6c296ec1afc634340d992/mypy-1.14.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9f6f4c0b27401d14c483c622bc5105eff3911634d576bbdf6695b9a7c1ba741", size = 11251509 },
|
120
|
+
{ url = "https://files.pythonhosted.org/packages/15/6d/4e1c21c60fee11af7d8e4f2902a29886d1387d6a836be16229eb3982a963/mypy-1.14.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:56b2280cedcb312c7a79f5001ae5325582d0d339bce684e4a529069d0e7ca1e7", size = 10244282 },
|
121
|
+
{ url = "https://files.pythonhosted.org/packages/8b/cf/7a8ae5c0161edae15d25c2c67c68ce8b150cbdc45aefc13a8be271ee80b2/mypy-1.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:342de51c48bab326bfc77ce056ba08c076d82ce4f5a86621f972ed39970f94d8", size = 12867676 },
|
122
|
+
{ url = "https://files.pythonhosted.org/packages/9c/d0/71f7bbdcc7cfd0f2892db5b13b1e8857673f2cc9e0c30e3e4340523dc186/mypy-1.14.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:00df23b42e533e02a6f0055e54de9a6ed491cd8b7ea738647364fd3a39ea7efc", size = 12964189 },
|
123
|
+
{ url = "https://files.pythonhosted.org/packages/a7/40/fb4ad65d6d5f8c51396ecf6305ec0269b66013a5bf02d0e9528053640b4a/mypy-1.14.0-cp313-cp313-win_amd64.whl", hash = "sha256:e8c8387e5d9dff80e7daf961df357c80e694e942d9755f3ad77d69b0957b8e3f", size = 9888247 },
|
124
|
+
{ url = "https://files.pythonhosted.org/packages/48/4b/3c77c79f56e085f7cb5d4a4bb14d56b39f81161b9347f1a8342c45bb5054/mypy-1.14.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b16738b1d80ec4334654e89e798eb705ac0c36c8a5c4798496cd3623aa02286", size = 11145847 },
|
125
|
+
{ url = "https://files.pythonhosted.org/packages/86/82/024a4eee1a7d14321d5a53d2f27108abd636b906ed111ad1c3a7f21a1635/mypy-1.14.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:10065fcebb7c66df04b05fc799a854b1ae24d9963c8bb27e9064a9bdb43aa8ad", size = 10317689 },
|
126
|
+
{ url = "https://files.pythonhosted.org/packages/3b/22/f8c98d3d6d492d61a822f655c4a9496f80e418592efcf4cde68ffd71600e/mypy-1.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fbb7d683fa6bdecaa106e8368aa973ecc0ddb79a9eaeb4b821591ecd07e9e03c", size = 12788755 },
|
127
|
+
{ url = "https://files.pythonhosted.org/packages/3f/79/43d7016990835e51e3f71775f01263b76615f287c03ffce5319cd8d91bab/mypy-1.14.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3498cb55448dc5533e438cd13d6ddd28654559c8c4d1fd4b5ca57a31b81bac01", size = 12975298 },
|
128
|
+
{ url = "https://files.pythonhosted.org/packages/70/d5/a7bffb6ed7da945f392dfa794e310a1f582484c3c0aaad278ee05bd644d5/mypy-1.14.0-cp38-cp38-win_amd64.whl", hash = "sha256:c7b243408ea43755f3a21a0a08e5c5ae30eddb4c58a80f415ca6b118816e60aa", size = 9764157 },
|
129
|
+
{ url = "https://files.pythonhosted.org/packages/aa/b7/7f04baf45d3f7fd15eb2e24ca225f93713a43fa3b7fb4ec85329e6849a50/mypy-1.14.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:14117b9da3305b39860d0aa34b8f1ff74d209a368829a584eb77524389a9c13e", size = 11202640 },
|
130
|
+
{ url = "https://files.pythonhosted.org/packages/1c/03/3d27a64baaa70d8218556a08d93fc64e0d3a46b81bae0e2c93511be85264/mypy-1.14.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af98c5a958f9c37404bd4eef2f920b94874507e146ed6ee559f185b8809c44cc", size = 10354715 },
|
131
|
+
{ url = "https://files.pythonhosted.org/packages/bb/bd/a0eb1789dfeaab0ca93d00f373c002cac4734e8f902de4e7eceb9245a116/mypy-1.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f0b343a1d3989547024377c2ba0dca9c74a2428ad6ed24283c213af8dbb0710b", size = 12832863 },
|
132
|
+
{ url = "https://files.pythonhosted.org/packages/ef/0c/d404be19b1145f9371c4d4fdfc166337a2810c2be0f19dec5965186e8fab/mypy-1.14.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cdb5563c1726c85fb201be383168f8c866032db95e1095600806625b3a648cb7", size = 13008982 },
|
133
|
+
{ url = "https://files.pythonhosted.org/packages/3e/2c/f02dbde7609de72160459767bfb12490e1e30e33e3d01a6c68d5934f73df/mypy-1.14.0-cp39-cp39-win_amd64.whl", hash = "sha256:74e925649c1ee0a79aa7448baf2668d81cc287dc5782cff6a04ee93f40fb8d3f", size = 9781353 },
|
134
|
+
{ url = "https://files.pythonhosted.org/packages/39/32/0214608af400cdf8f5102144bb8af10d880675c65ed0b58f7e0e77175d50/mypy-1.14.0-py3-none-any.whl", hash = "sha256:2238d7f93fc4027ed1efc944507683df3ba406445a2b6c96e79666a045aadfab", size = 2752803 },
|
135
135
|
]
|
136
136
|
|
137
137
|
[[package]]
|
@@ -224,27 +224,27 @@ wheels = [
|
|
224
224
|
|
225
225
|
[[package]]
|
226
226
|
name = "ruff"
|
227
|
-
version = "0.8.
|
227
|
+
version = "0.8.4"
|
228
228
|
source = { registry = "https://pypi.org/simple" }
|
229
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
229
|
+
sdist = { url = "https://files.pythonhosted.org/packages/34/37/9c02181ef38d55b77d97c68b78e705fd14c0de0e5d085202bb2b52ce5be9/ruff-0.8.4.tar.gz", hash = "sha256:0d5f89f254836799af1615798caa5f80b7f935d7a670fad66c5007928e57ace8", size = 3402103 }
|
230
230
|
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/
|
231
|
+
{ url = "https://files.pythonhosted.org/packages/05/67/f480bf2f2723b2e49af38ed2be75ccdb2798fca7d56279b585c8f553aaab/ruff-0.8.4-py3-none-linux_armv6l.whl", hash = "sha256:58072f0c06080276804c6a4e21a9045a706584a958e644353603d36ca1eb8a60", size = 10546415 },
|
232
|
+
{ 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 },
|
233
|
+
{ 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 },
|
234
|
+
{ 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 },
|
235
|
+
{ 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 },
|
236
|
+
{ 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 },
|
237
|
+
{ 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 },
|
238
|
+
{ 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 },
|
239
|
+
{ 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 },
|
240
|
+
{ 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 },
|
241
|
+
{ 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 },
|
242
|
+
{ 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 },
|
243
|
+
{ 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 },
|
244
|
+
{ 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 },
|
245
|
+
{ url = "https://files.pythonhosted.org/packages/43/a9/1676ee9106995381e3d34bccac5bb28df70194167337ed4854c20f27c7ba/ruff-0.8.4-py3-none-win32.whl", hash = "sha256:552fb6d861320958ca5e15f28b20a3d071aa83b93caee33a87b471f99a6c0835", size = 8805621 },
|
246
|
+
{ url = "https://files.pythonhosted.org/packages/10/98/ed6b56a30ee76771c193ff7ceeaf1d2acc98d33a1a27b8479cbdb5c17a23/ruff-0.8.4-py3-none-win_amd64.whl", hash = "sha256:f21a1143776f8656d7f364bd264a9d60f01b7f52243fbe90e7670c0dfe0cf65d", size = 9660086 },
|
247
|
+
{ url = "https://files.pythonhosted.org/packages/13/9f/026e18ca7d7766783d779dae5e9c656746c6ede36ef73c6d934aaf4a6dec/ruff-0.8.4-py3-none-win_arm64.whl", hash = "sha256:9183dd615d8df50defa8b1d9a074053891ba39025cf5ae88e8bcb52edcc4bf08", size = 9074500 },
|
248
248
|
]
|
249
249
|
|
250
250
|
[[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
|