pyproject-pre-commit 0.3.0__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/.github/workflows/test.yml +3 -7
  2. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/.pre-commit-hooks.yaml +2 -2
  3. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/PKG-INFO +51 -8
  4. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/README.md +49 -4
  5. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/pyproject.toml +6 -9
  6. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/tests/test_pyproject_pre_commit.py +2 -2
  7. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/tests/test_version.py +1 -1
  8. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/uv.lock +28 -28
  9. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/.github/FUNDING.yml +0 -0
  10. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/.github/workflows/pypi.yml +0 -0
  11. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/.gitignore +0 -0
  12. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/.pre-commit-config.yaml +0 -0
  13. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/LICENSE +0 -0
  14. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/renovate.json +0 -0
  15. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/src/pyproject_pre_commit/__init__.py +0 -0
  16. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/src/pyproject_pre_commit/__version__.py +0 -0
  17. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/src/pyproject_pre_commit/py.typed +0 -0
  18. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/src/pyproject_pre_commit/pyproject_pre_commit.py +0 -0
  19. {pyproject_pre_commit-0.3.0 → pyproject_pre_commit-0.3.2}/tests/__init__.py +0 -0
@@ -53,7 +53,7 @@ jobs:
53
53
  fail-fast: false
54
54
  matrix:
55
55
  os: [ubuntu-latest]
56
- python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
56
+ python-version: ["3.12", "3.11", "3.10", "3.9"]
57
57
  permissions:
58
58
  contents: write
59
59
  runs-on: ${{ matrix.os }}
@@ -77,16 +77,12 @@ jobs:
77
77
  else
78
78
  echo "DEBUG=0" >> $GITHUB_ENV
79
79
  fi
80
- - uses: rcmdnk/python-action@v2
80
+ - uses: rcmdnk/python-action@v3
81
81
  with:
82
82
  checkout: 1
83
83
  setup-python: 1
84
84
  python-version: "${{ matrix.python-version }}"
85
- pip: 'pip'
86
- setup-cmd: 'poetry install'
87
- pip-packages: ''
88
- poetry: 1
89
- cache: 'poetry'
85
+ setup-type: 'uv'
90
86
  pytest: 1
91
87
  pytest-tests-path: 'tests/'
92
88
  pytest-ignore: ''
@@ -30,7 +30,7 @@
30
30
  name: ruff-format-diff
31
31
  description: "Show diff of ruff for formatting"
32
32
  entry: ruff format --diff --force-exclude
33
- language: python
33
+ language: system
34
34
  types_or:
35
35
  - python
36
36
  - pyi
@@ -44,7 +44,7 @@
44
44
  name: ruff-format
45
45
  description: "Fix by ruff for formatting"
46
46
  entry: ruff format --force-exclude
47
- language: python
47
+ language: system
48
48
  types_or:
49
49
  - python
50
50
  - pyi
@@ -1,11 +1,9 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyproject-pre-commit
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: pre-commit hooks for python projects using pyproject.toml.
5
5
  Author-email: rcmdnk <rcmdnk@gmail.com>
6
- License-Expression: Apache-2.0
7
- License-File: LICENSE
8
- Keywords: poetry,pre-commit,pyproject.toml
6
+ Keywords: pre-commit,pyproject.toml,uv
9
7
  Classifier: Development Status :: 3 - Alpha
10
8
  Classifier: Environment :: Console
11
9
  Classifier: Intended Audience :: Developers
@@ -84,6 +82,18 @@ $ pip install pyproject-pre-commit
84
82
  This will install tools for pre-commit hooks in your working environment,
85
83
  so that you can use these tools, such as black, directly.
86
84
 
85
+ ### Install pyproject-pre-commit with ruff
86
+
87
+ If you want to use ruff, you can install pyproject-pre-commit with ruff option.
88
+
89
+ ```
90
+ $ poetry add --group dev "pyproject-pre-commit[ruff]"
91
+ ```
92
+
93
+ ```
94
+ $ pip install pyproject-pre-commit[ruff]
95
+ ```
96
+
87
97
  ### Prepare .pre-commit-config.yaml
88
98
 
89
99
  Add **https://github.com/rcmdnk/pyproject-pre-commit** to your **.pre-commit-config.yaml**, like:
@@ -133,6 +143,29 @@ $ ppc --pre-commit |grep -v "^repos:" >> .pre-commit-config.yaml
133
143
 
134
144
  You may want to modify after adding these configurations.
135
145
 
146
+ To use `ruff` instead of such as `black`, `flake8`, `isort`, add following hooks:
147
+
148
+ ```yaml
149
+ repos:
150
+ - repo: https://github.com/rcmdnk/pyproject-pre-commit
151
+ rev: v0.3.0
152
+ hooks:
153
+ - id: ruff-lint-diff
154
+ - id: ruff-lint
155
+ - id: ruff-format-diff
156
+ - id: ruff-format
157
+ - id: mypy
158
+ - id: shellcheck
159
+ - id: mdformat-check
160
+ - id: mdformat
161
+ ```
162
+
163
+ This can be made by `ppc` command:
164
+
165
+ ```
166
+ $ ppc --pre-commit --ruff > .pre-commit-config.yaml
167
+ ```
168
+
136
169
  ### Run pre-commit
137
170
 
138
171
  `pre-commit` command is installed as dependencies of **pyproject-pre-commit** package.
@@ -161,14 +194,14 @@ You can find ids in **.pre-commit-hooks.yaml**.
161
194
  There are ids for following tools:
162
195
 
163
196
  - For Python
164
- - black-diff: Just show Black result.
197
+ - [black-diff](https://black.readthedocs.io/en/stable): Just show Black result.
165
198
  - [black](https://black.readthedocs.io/en/stable): Black: The uncompromising Python code formatter.
166
199
  - [blacken-docs](https://github.com/adamchainz/blacken-docs): Run `black` on python code blocks in documentation files.
167
- - autoflake-diff: Just show autoflake result.
200
+ - [autoflake-diff](https://github.com/PyCQA/autoflake): Just show autoflake result.
168
201
  - [autoflake](https://github.com/PyCQA/autoflake): autoflake removes unused imports and unused variables from Python code.
169
- - autopep8-diff: Just show autopep8.
202
+ - [autopep8-diff](https://github.com/hhatto/autopep8): Just show autopep8.
170
203
  - [autopep8](https://github.com/hhatto/autopep8): autopep8 automatically formats Python code to conform to the PEP 8 style guide.
171
- - isort-diff: Just show isort result.
204
+ - [isort-diff](https://github.com/PyCQA/isort): Just show isort result.
172
205
  - [isort](https://github.com/PyCQA/isort): isort your imports, so you don't have to.
173
206
  - [flake8](https://github.com/PyCQA/flake8): `flake8` is a command-line utility for enforcing style consistency across Python projects.
174
207
  - With following plugins:
@@ -188,6 +221,10 @@ There are ids for following tools:
188
221
  - [pycodestyle](https://pycodestyle.pycqa.org/en/latest/)
189
222
  - [bandit](https://github.com/PyCQA/bandit): Bandit is a tool for finding common security issues in Python code.
190
223
  - [mypy](https://www.mypy-lang.org/): Mypy is a static type checker for Python.
224
+ - [ruff-lint-diff](https://docs.astral.sh/ruff/): Just show ruff check result.
225
+ - [ruff-lint](https://docs.astral.sh/ruff/): Fix by ruff for lint.
226
+ - [ruff-format-diff](https://docs.astral.sh/ruff/): Just show ruff format result.
227
+ - [ruff-format](https://docs.astral.sh/ruff/): Format by ruff.
191
228
  - For Shell script
192
229
  - [shellcheck](https://www.shellcheck.net/): ShellCheck - A shell script static analysis tool
193
230
  - For Markdown
@@ -226,4 +263,10 @@ Example options can be made by `ppc` command:
226
263
  $ ppc --pyproject >> pyproject.toml
227
264
  ```
228
265
 
266
+ or
267
+
268
+ ```
269
+ $ ppc --pyproject --ruff >> pyproject.toml
270
+ ```
271
+
229
272
  You may want to modify after adding these configurations.
@@ -36,6 +36,18 @@ $ pip install pyproject-pre-commit
36
36
  This will install tools for pre-commit hooks in your working environment,
37
37
  so that you can use these tools, such as black, directly.
38
38
 
39
+ ### Install pyproject-pre-commit with ruff
40
+
41
+ If you want to use ruff, you can install pyproject-pre-commit with ruff option.
42
+
43
+ ```
44
+ $ poetry add --group dev "pyproject-pre-commit[ruff]"
45
+ ```
46
+
47
+ ```
48
+ $ pip install pyproject-pre-commit[ruff]
49
+ ```
50
+
39
51
  ### Prepare .pre-commit-config.yaml
40
52
 
41
53
  Add **https://github.com/rcmdnk/pyproject-pre-commit** to your **.pre-commit-config.yaml**, like:
@@ -85,6 +97,29 @@ $ ppc --pre-commit |grep -v "^repos:" >> .pre-commit-config.yaml
85
97
 
86
98
  You may want to modify after adding these configurations.
87
99
 
100
+ To use `ruff` instead of such as `black`, `flake8`, `isort`, add following hooks:
101
+
102
+ ```yaml
103
+ repos:
104
+ - repo: https://github.com/rcmdnk/pyproject-pre-commit
105
+ rev: v0.3.0
106
+ hooks:
107
+ - id: ruff-lint-diff
108
+ - id: ruff-lint
109
+ - id: ruff-format-diff
110
+ - id: ruff-format
111
+ - id: mypy
112
+ - id: shellcheck
113
+ - id: mdformat-check
114
+ - id: mdformat
115
+ ```
116
+
117
+ This can be made by `ppc` command:
118
+
119
+ ```
120
+ $ ppc --pre-commit --ruff > .pre-commit-config.yaml
121
+ ```
122
+
88
123
  ### Run pre-commit
89
124
 
90
125
  `pre-commit` command is installed as dependencies of **pyproject-pre-commit** package.
@@ -113,14 +148,14 @@ You can find ids in **.pre-commit-hooks.yaml**.
113
148
  There are ids for following tools:
114
149
 
115
150
  - For Python
116
- - black-diff: Just show Black result.
151
+ - [black-diff](https://black.readthedocs.io/en/stable): Just show Black result.
117
152
  - [black](https://black.readthedocs.io/en/stable): Black: The uncompromising Python code formatter.
118
153
  - [blacken-docs](https://github.com/adamchainz/blacken-docs): Run `black` on python code blocks in documentation files.
119
- - autoflake-diff: Just show autoflake result.
154
+ - [autoflake-diff](https://github.com/PyCQA/autoflake): Just show autoflake result.
120
155
  - [autoflake](https://github.com/PyCQA/autoflake): autoflake removes unused imports and unused variables from Python code.
121
- - autopep8-diff: Just show autopep8.
156
+ - [autopep8-diff](https://github.com/hhatto/autopep8): Just show autopep8.
122
157
  - [autopep8](https://github.com/hhatto/autopep8): autopep8 automatically formats Python code to conform to the PEP 8 style guide.
123
- - isort-diff: Just show isort result.
158
+ - [isort-diff](https://github.com/PyCQA/isort): Just show isort result.
124
159
  - [isort](https://github.com/PyCQA/isort): isort your imports, so you don't have to.
125
160
  - [flake8](https://github.com/PyCQA/flake8): `flake8` is a command-line utility for enforcing style consistency across Python projects.
126
161
  - With following plugins:
@@ -140,6 +175,10 @@ There are ids for following tools:
140
175
  - [pycodestyle](https://pycodestyle.pycqa.org/en/latest/)
141
176
  - [bandit](https://github.com/PyCQA/bandit): Bandit is a tool for finding common security issues in Python code.
142
177
  - [mypy](https://www.mypy-lang.org/): Mypy is a static type checker for Python.
178
+ - [ruff-lint-diff](https://docs.astral.sh/ruff/): Just show ruff check result.
179
+ - [ruff-lint](https://docs.astral.sh/ruff/): Fix by ruff for lint.
180
+ - [ruff-format-diff](https://docs.astral.sh/ruff/): Just show ruff format result.
181
+ - [ruff-format](https://docs.astral.sh/ruff/): Format by ruff.
143
182
  - For Shell script
144
183
  - [shellcheck](https://www.shellcheck.net/): ShellCheck - A shell script static analysis tool
145
184
  - For Markdown
@@ -178,4 +217,10 @@ Example options can be made by `ppc` command:
178
217
  $ ppc --pyproject >> pyproject.toml
179
218
  ```
180
219
 
220
+ or
221
+
222
+ ```
223
+ $ ppc --pyproject --ruff >> pyproject.toml
224
+ ```
225
+
181
226
  You may want to modify after adding these configurations.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyproject-pre-commit"
3
- version = "0.3.0"
3
+ version = "0.3.2"
4
4
  description = "pre-commit hooks for python projects using pyproject.toml."
5
5
  authors = [
6
6
  { name = "rcmdnk", email = "rcmdnk@gmail.com" }
@@ -9,7 +9,7 @@ repository = "https://github.com/rcmdnk/pyproject-pre-commit"
9
9
  homepage = "https://github.com/rcmdnk/pyproject-pre-commit"
10
10
  readme = "README.md"
11
11
  license = "Apache-2.0"
12
- keywords = ["pre-commit", "pyproject.toml", "poetry"]
12
+ keywords = ["pre-commit", "pyproject.toml", "uv"]
13
13
  classifiers = [
14
14
  "Development Status :: 3 - Alpha",
15
15
  "Environment :: Console",
@@ -56,9 +56,6 @@ ruff = [
56
56
  "ruff >= 0.7.2",
57
57
  ]
58
58
 
59
- [tool.poetry.extras]
60
- ruff = ["ruff"]
61
-
62
59
  [dependency-groups]
63
60
  dev = [
64
61
  "pytest >= 8.0.0",
@@ -67,6 +64,9 @@ dev = [
67
64
  "ruff >= 0.7.2",
68
65
  ]
69
66
 
67
+ [project.scripts]
68
+ ppc = "pyproject_pre_commit:main"
69
+
70
70
  [build-system]
71
71
  requires = ["hatchling"]
72
72
  build-backend = "hatchling.build"
@@ -77,7 +77,6 @@ testpaths = ["tests",]
77
77
 
78
78
  [tool.ruff]
79
79
  line-length = 79
80
- # quote-style = "single"
81
80
 
82
81
  [tool.ruff.lint]
83
82
  ## select = ["ALL"]
@@ -117,6 +116,7 @@ ignore = [
117
116
  max-complexity = 10
118
117
 
119
118
  [tool.ruff.format]
119
+ # quote-style = "single"
120
120
  docstring-code-format = true
121
121
 
122
122
  [tool.black]
@@ -171,6 +171,3 @@ checks = [
171
171
  "PR02", # "Unknown parameters {unknown_params}"
172
172
  "RT01", # "No Returns section found"
173
173
  ]
174
-
175
- [tool.poetry.scripts]
176
- ppc = "pyproject_pre_commit:main"
@@ -10,11 +10,11 @@ from pyproject_pre_commit import __version__, main
10
10
  [
11
11
  (
12
12
  ["ppc"],
13
- "Please specify only one of --pre-commit and --pyproject.\n",
13
+ "Usage: ppc <--pre-commit | --pyproject> [--ruff] [--black]\n",
14
14
  ),
15
15
  (
16
16
  ["ppc", "--wrong"],
17
- "Please specify only one of --pre-commit and --pyproject.\n",
17
+ "Usage: ppc <--pre-commit | --pyproject> [--ruff] [--black]\n",
18
18
  ),
19
19
  ],
20
20
  )
@@ -9,5 +9,5 @@ def test_version():
9
9
  except ModuleNotFoundError:
10
10
  import tomli as tomllib
11
11
  with open(Path(__file__).parents[1] / "pyproject.toml", "rb") as f:
12
- version = tomllib.load(f)["tool"]["poetry"]["version"]
12
+ version = tomllib.load(f)["project"]["version"]
13
13
  assert version == __version__
@@ -532,11 +532,11 @@ wheels = [
532
532
 
533
533
  [[package]]
534
534
  name = "identify"
535
- version = "2.6.1"
535
+ version = "2.6.2"
536
536
  source = { registry = "https://pypi.org/simple" }
537
- sdist = { url = "https://files.pythonhosted.org/packages/29/bb/25024dbcc93516c492b75919e76f389bac754a3e4248682fba32b250c880/identify-2.6.1.tar.gz", hash = "sha256:91478c5fb7c3aac5ff7bf9b4344f803843dc586832d5f110d672b19aa1984c98", size = 99097 }
537
+ sdist = { url = "https://files.pythonhosted.org/packages/02/79/7a520fc5011e02ca3f3285b5f6820eaf80443eb73e3733f73c02fb42ba0b/identify-2.6.2.tar.gz", hash = "sha256:fab5c716c24d7a789775228823797296a2994b075fb6080ac83a102772a98cbd", size = 99113 }
538
538
  wheels = [
539
- { url = "https://files.pythonhosted.org/packages/7d/0c/4ef72754c050979fdcc06c744715ae70ea37e734816bb6514f79df77a42f/identify-2.6.1-py2.py3-none-any.whl", hash = "sha256:53863bcac7caf8d2ed85bd20312ea5dcfc22226800f6d6881f232d861db5a8f0", size = 98972 },
539
+ { url = "https://files.pythonhosted.org/packages/e0/86/c4395700f3c5475424fb5c41e20c16be28d10c904aee4d005ba3217fc8e7/identify-2.6.2-py2.py3-none-any.whl", hash = "sha256:c097384259f49e372f4ea00a19719d95ae27dd5ff0fd77ad630aa891306b82f3", size = 98982 },
540
540
  ]
541
541
 
542
542
  [[package]]
@@ -868,11 +868,11 @@ wheels = [
868
868
 
869
869
  [[package]]
870
870
  name = "packaging"
871
- version = "24.1"
871
+ version = "24.2"
872
872
  source = { registry = "https://pypi.org/simple" }
873
- sdist = { url = "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002", size = 148788 }
873
+ sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 }
874
874
  wheels = [
875
- { url = "https://files.pythonhosted.org/packages/08/aa/cc0199a5f0ad350994d660967a8efb233fe0416e4639146c089643407ce6/packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124", size = 53985 },
875
+ { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 },
876
876
  ]
877
877
 
878
878
  [[package]]
@@ -980,7 +980,7 @@ wheels = [
980
980
 
981
981
  [[package]]
982
982
  name = "pyproject-pre-commit"
983
- version = "0.3.0"
983
+ version = "0.3.2"
984
984
  source = { editable = "." }
985
985
  dependencies = [
986
986
  { name = "autoflake" },
@@ -1263,27 +1263,27 @@ wheels = [
1263
1263
 
1264
1264
  [[package]]
1265
1265
  name = "ruff"
1266
- version = "0.7.2"
1267
- source = { registry = "https://pypi.org/simple" }
1268
- sdist = { url = "https://files.pythonhosted.org/packages/95/51/231bb3790e5b0b9fd4131f9a231d73d061b3667522e3f406fd9b63334d0e/ruff-0.7.2.tar.gz", hash = "sha256:2b14e77293380e475b4e3a7a368e14549288ed2931fce259a6f99978669e844f", size = 3210036 }
1269
- wheels = [
1270
- { url = "https://files.pythonhosted.org/packages/5c/56/0caa2b5745d66a39aa239c01059f6918fc76ed8380033d2f44bf297d141d/ruff-0.7.2-py3-none-linux_armv6l.whl", hash = "sha256:b73f873b5f52092e63ed540adefc3c36f1f803790ecf2590e1df8bf0a9f72cb8", size = 10373973 },
1271
- { url = "https://files.pythonhosted.org/packages/1a/33/cad6ff306731f335d481c50caa155b69a286d5b388e87ff234cd2a4b3557/ruff-0.7.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:5b813ef26db1015953daf476202585512afd6a6862a02cde63f3bafb53d0b2d4", size = 10171140 },
1272
- { url = "https://files.pythonhosted.org/packages/97/f5/6a2ca5c9ba416226eac9cf8121a1baa6f06655431937e85f38ffcb9d0d01/ruff-0.7.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:853277dbd9675810c6826dad7a428d52a11760744508340e66bf46f8be9701d9", size = 9809333 },
1273
- { url = "https://files.pythonhosted.org/packages/16/83/e3e87f13d1a1dc205713632978cd7bc287a59b08bc95780dbe359b9aefcb/ruff-0.7.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21aae53ab1490a52bf4e3bf520c10ce120987b047c494cacf4edad0ba0888da2", size = 10622987 },
1274
- { url = "https://files.pythonhosted.org/packages/22/16/97ccab194480e99a2e3c77ae132b3eebfa38c2112747570c403a4a13ba3a/ruff-0.7.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ccc7e0fc6e0cb3168443eeadb6445285abaae75142ee22b2b72c27d790ab60ba", size = 10184640 },
1275
- { url = "https://files.pythonhosted.org/packages/97/1b/82ff05441b036f68817296c14f24da47c591cb27acfda473ee571a5651ac/ruff-0.7.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd77877a4e43b3a98e5ef4715ba3862105e299af0c48942cc6d51ba3d97dc859", size = 11210203 },
1276
- { url = "https://files.pythonhosted.org/packages/a6/96/7ecb30a7ef7f942e2d8e0287ad4c1957dddc6c5097af4978c27cfc334f97/ruff-0.7.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:e00163fb897d35523c70d71a46fbaa43bf7bf9af0f4534c53ea5b96b2e03397b", size = 11870894 },
1277
- { url = "https://files.pythonhosted.org/packages/06/6a/c716bb126218227f8e604a9c484836257708a05ee3d2ebceb666ff3d3867/ruff-0.7.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3c54b538633482dc342e9b634d91168fe8cc56b30a4b4f99287f4e339103e88", size = 11449533 },
1278
- { url = "https://files.pythonhosted.org/packages/e6/2f/3a5f9f9478904e5ae9506ea699109070ead1e79aac041e872cbaad8a7458/ruff-0.7.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7b792468e9804a204be221b14257566669d1db5c00d6bb335996e5cd7004ba80", size = 12607919 },
1279
- { url = "https://files.pythonhosted.org/packages/a0/57/4642e57484d80d274750dcc872ea66655bbd7e66e986fede31e1865b463d/ruff-0.7.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dba53ed84ac19ae4bfb4ea4bf0172550a2285fa27fbb13e3746f04c80f7fa088", size = 11016915 },
1280
- { url = "https://files.pythonhosted.org/packages/4d/6d/59be6680abee34c22296ae3f46b2a3b91662b8b18ab0bf388b5eb1355c97/ruff-0.7.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:b19fafe261bf741bca2764c14cbb4ee1819b67adb63ebc2db6401dcd652e3748", size = 10625424 },
1281
- { url = "https://files.pythonhosted.org/packages/82/e7/f6a643683354c9bc7879d2f228ee0324fea66d253de49273a0814fba1927/ruff-0.7.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:28bd8220f4d8f79d590db9e2f6a0674f75ddbc3847277dd44ac1f8d30684b828", size = 10233692 },
1282
- { url = "https://files.pythonhosted.org/packages/d7/48/b4e02fc835cd7ed1ee7318d9c53e48bcf6b66301f55925a7dcb920e45532/ruff-0.7.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:9fd67094e77efbea932e62b5d2483006154794040abb3a5072e659096415ae1e", size = 10751825 },
1283
- { url = "https://files.pythonhosted.org/packages/1e/06/6c5ee6ab7bb4cbad9e8bb9b2dd0d818c759c90c1c9e057c6ed70334b97f4/ruff-0.7.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:576305393998b7bd6c46018f8104ea3a9cb3fa7908c21d8580e3274a3b04b691", size = 11074811 },
1284
- { url = "https://files.pythonhosted.org/packages/a1/16/8969304f25bcd0e4af1778342e63b715e91db8a2dbb51807acd858cba915/ruff-0.7.2-py3-none-win32.whl", hash = "sha256:fa993cfc9f0ff11187e82de874dfc3611df80852540331bc85c75809c93253a8", size = 8650268 },
1285
- { url = "https://files.pythonhosted.org/packages/d9/18/c4b00d161def43fe5968e959039c8f6ce60dca762cec4a34e4e83a4210a0/ruff-0.7.2-py3-none-win_amd64.whl", hash = "sha256:dd8800cbe0254e06b8fec585e97554047fb82c894973f7ff18558eee33d1cb88", size = 9433693 },
1286
- { url = "https://files.pythonhosted.org/packages/7f/7b/c920673ac01c19814dd15fc617c02301c522f3d6812ca2024f4588ed4549/ruff-0.7.2-py3-none-win_arm64.whl", hash = "sha256:bb8368cd45bba3f57bb29cbb8d64b4a33f8415d0149d2655c5c8539452ce7760", size = 8735845 },
1266
+ version = "0.7.3"
1267
+ source = { registry = "https://pypi.org/simple" }
1268
+ sdist = { url = "https://files.pythonhosted.org/packages/4b/06/09d1276df977eece383d0ed66052fc24ec4550a61f8fbc0a11200e690496/ruff-0.7.3.tar.gz", hash = "sha256:e1d1ba2e40b6e71a61b063354d04be669ab0d39c352461f3d789cac68b54a313", size = 3243664 }
1269
+ wheels = [
1270
+ { url = "https://files.pythonhosted.org/packages/c0/56/933d433c2489e4642487b835f53dd9ff015fb3d8fa459b09bb2ce42d7c4b/ruff-0.7.3-py3-none-linux_armv6l.whl", hash = "sha256:34f2339dc22687ec7e7002792d1f50712bf84a13d5152e75712ac08be565d344", size = 10372090 },
1271
+ { url = "https://files.pythonhosted.org/packages/20/ea/1f0a22a6bcdd3fc26c73f63a025d05bd565901b729d56bcb093c722a6c4c/ruff-0.7.3-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:fb397332a1879b9764a3455a0bb1087bda876c2db8aca3a3cbb67b3dbce8cda0", size = 10190037 },
1272
+ { url = "https://files.pythonhosted.org/packages/16/74/aca75666e0d481fe394e76a8647c44ea919087748024924baa1a17371e3e/ruff-0.7.3-py3-none-macosx_11_0_arm64.whl", hash = "sha256:37d0b619546103274e7f62643d14e1adcbccb242efda4e4bdb9544d7764782e9", size = 9811998 },
1273
+ { url = "https://files.pythonhosted.org/packages/20/a1/cf446a0d7f78ea1f0bd2b9171c11dfe746585c0c4a734b25966121eb4f5d/ruff-0.7.3-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d59f0c3ee4d1a6787614e7135b72e21024875266101142a09a61439cb6e38a5", size = 10620626 },
1274
+ { url = "https://files.pythonhosted.org/packages/cd/c1/82b27d09286ae855f5d03b1ad37cf243f21eb0081732d4d7b0d658d439cb/ruff-0.7.3-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:44eb93c2499a169d49fafd07bc62ac89b1bc800b197e50ff4633aed212569299", size = 10177598 },
1275
+ { url = "https://files.pythonhosted.org/packages/b9/42/c0acac22753bf74013d035a5ef6c5c4c40ad4d6686bfb3fda7c6f37d9b37/ruff-0.7.3-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d0242ce53f3a576c35ee32d907475a8d569944c0407f91d207c8af5be5dae4e", size = 11171963 },
1276
+ { url = "https://files.pythonhosted.org/packages/43/18/bb0befb7fb9121dd9009e6a72eb98e24f1bacb07c6f3ecb55f032ba98aed/ruff-0.7.3-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:6b6224af8b5e09772c2ecb8dc9f3f344c1aa48201c7f07e7315367f6dd90ac29", size = 11856157 },
1277
+ { url = "https://files.pythonhosted.org/packages/5e/91/04e98d7d6e32eca9d1372be595f9abc7b7f048795e32eb2edbd8794d50bd/ruff-0.7.3-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c50f95a82b94421c964fae4c27c0242890a20fe67d203d127e84fbb8013855f5", size = 11440331 },
1278
+ { url = "https://files.pythonhosted.org/packages/f5/dc/3fe99f2ce10b76d389041a1b9f99e7066332e479435d4bebcceea16caff5/ruff-0.7.3-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7f3eff9961b5d2644bcf1616c606e93baa2d6b349e8aa8b035f654df252c8c67", size = 12725354 },
1279
+ { url = "https://files.pythonhosted.org/packages/43/7b/1daa712de1c5bc6cbbf9fa60e9c41cc48cda962dc6d2c4f2a224d2c3007e/ruff-0.7.3-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8963cab06d130c4df2fd52c84e9f10d297826d2e8169ae0c798b6221be1d1d2", size = 11010091 },
1280
+ { url = "https://files.pythonhosted.org/packages/b6/db/1227a903587432eb569e57a95b15a4f191a71fe315cde4c0312df7bc85da/ruff-0.7.3-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:61b46049d6edc0e4317fb14b33bd693245281a3007288b68a3f5b74a22a0746d", size = 10610687 },
1281
+ { url = "https://files.pythonhosted.org/packages/db/e2/dc41ee90c3085aadad4da614d310d834f641aaafddf3dfbba08210c616ce/ruff-0.7.3-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:10ebce7696afe4644e8c1a23b3cf8c0f2193a310c18387c06e583ae9ef284de2", size = 10254843 },
1282
+ { url = "https://files.pythonhosted.org/packages/6f/09/5f6cac1c91542bc5bd33d40b4c13b637bf64d7bb29e091dadb01b62527fe/ruff-0.7.3-py3-none-musllinux_1_2_i686.whl", hash = "sha256:3f36d56326b3aef8eeee150b700e519880d1aab92f471eefdef656fd57492aa2", size = 10730962 },
1283
+ { url = "https://files.pythonhosted.org/packages/d3/42/89a4b9a24ef7d00269e24086c417a006f9a3ffeac2c80f2629eb5ce140ee/ruff-0.7.3-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:5d024301109a0007b78d57ab0ba190087b43dce852e552734ebf0b0b85e4fb16", size = 11101907 },
1284
+ { url = "https://files.pythonhosted.org/packages/b0/5c/efdb4777686683a8edce94ffd812783bddcd3d2454d38c5ac193fef7c500/ruff-0.7.3-py3-none-win32.whl", hash = "sha256:4ba81a5f0c5478aa61674c5a2194de8b02652f17addf8dfc40c8937e6e7d79fc", size = 8611095 },
1285
+ { url = "https://files.pythonhosted.org/packages/bb/b8/28fbc6a4efa50178f973972d1c84b2d0a33cdc731588522ab751ac3da2f5/ruff-0.7.3-py3-none-win_amd64.whl", hash = "sha256:588a9ff2fecf01025ed065fe28809cd5a53b43505f48b69a1ac7707b1b7e4088", size = 9418283 },
1286
+ { url = "https://files.pythonhosted.org/packages/3f/77/b587cba6febd5e2003374f37eb89633f79f161e71084f94057c8653b7fb3/ruff-0.7.3-py3-none-win_arm64.whl", hash = "sha256:1713e2c5545863cdbfe2cbce21f69ffaf37b813bfd1fb3b90dc9a6f1963f5a8c", size = 8725228 },
1287
1287
  ]
1288
1288
 
1289
1289
  [[package]]