Skip to content

Commit

Permalink
chore(deps): bump version to 2024.11.18 (#86)
Browse files Browse the repository at this point in the history
Co-authored-by: pyproject-schema-store-bot[bot] <181761350+pyproject-schema-store-bot[bot]@users.noreply.github.com>
  • Loading branch information
pyproject-schema-store-bot[bot] authored Nov 18, 2024
1 parent 91fcac3 commit 297e98a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "hatchling.build"

[project]
name = "validate-pyproject-schema-store"
version = "2024.11.11"
version = "2024.11.18"
authors = [
{ name = "Henry Schreiner", email = "[email protected]" },
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"py39",
"py310",
"py311",
"py312"
"py312",
"py313"
]
},
"description": "Python versions that should be supported by Black's output. You should include all versions that your code supports. By default, Black will infer target versions from the project metadata in pyproject.toml. If this does not yield conclusive results, Black will use per-file auto-detection."
Expand Down
18 changes: 18 additions & 0 deletions src/validate_pyproject_schema_store/resources/ruff.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2756,6 +2756,16 @@
"RuffOptions": {
"type": "object",
"properties": {
"extend-markup-names": {
"description": "A list of additional callable names that behave like [`markupsafe.Markup`].\n\nExpects to receive a list of fully-qualified names (e.g., `webhelpers.html.literal`, rather than `literal`).\n\n[markupsafe.Markup]: https://markupsafe.palletsprojects.com/en/stable/escaping/#markupsafe.Markup",
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"parenthesize-tuple-in-subscript": {
"description": "Whether to prefer accessing items keyed by tuples with parentheses around the tuple (see `RUF031`).",
"type": [
Expand Down Expand Up @@ -3014,6 +3024,9 @@
"DTZ01",
"DTZ011",
"DTZ012",
"DTZ9",
"DTZ90",
"DTZ901",
"E",
"E1",
"E10",
Expand Down Expand Up @@ -3307,6 +3320,8 @@
"LOG002",
"LOG007",
"LOG009",
"LOG01",
"LOG015",
"N",
"N8",
"N80",
Expand Down Expand Up @@ -3602,6 +3617,7 @@
"PLW15",
"PLW150",
"PLW1501",
"PLW1507",
"PLW1508",
"PLW1509",
"PLW151",
Expand Down Expand Up @@ -3817,6 +3833,8 @@
"RUF032",
"RUF033",
"RUF034",
"RUF035",
"RUF036",
"RUF1",
"RUF10",
"RUF100",
Expand Down

0 comments on commit 297e98a

Please sign in to comment.