Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump versions #43

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 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.04.29"
version = "2024.05.13"
authors = [
{ name = "Henry Schreiner", email = "henryfs@princeton.edu" },
]
Expand Down Expand Up @@ -69,6 +69,7 @@ scikit-build = "validate_pyproject_schema_store.schema:get_schema"
poetry = "validate_pyproject_schema_store.schema:get_schema"
pdm = "validate_pyproject_schema_store.schema:get_schema"
pyright = "validate_pyproject_schema_store.schema:get_schema"
uv = "validate_pyproject_schema_store.schema:get_schema"

[project.entry-points."pipx.run"]
validate-pyproject-schema-store = "validate_pyproject.cli:main"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1699,7 +1699,7 @@
}
},
"sections": {
"description": "A list of mappings from section names to modules.\n\nBy default, imports are categorized according to their type (e.g., `future`, `third-party`, and so on). This setting allows you to group modules into custom sections, to augment or override the built-in sections.\n\nFor example, to group all testing utilities, you could create a `testing` section: ```toml testing = [\"pytest\", \"hypothesis\"] ```\n\nCustom sections should typically be inserted into the `section-order` list to ensure that they're displayed as a standalone group and in the intended order, as in: ```toml section-order = [ \"future\", \"standard-library\", \"third-party\", \"first-party\", \"local-folder\", \"testing\" ] ```\n\nIf a custom section is omitted from `section-order`, imports in that section will be assigned to the `default-section` (which defaults to `third-party`).",
"description": "A list of mappings from section names to modules.\n\nBy default, imports are categorized according to their type (e.g., `future`, `third-party`, and so on). This setting allows you to group modules into custom sections, to augment or override the built-in sections.\n\nFor example, to group all testing utilities, you could create a `testing` section: ```toml testing = [\"pytest\", \"hypothesis\"] ```\n\nThe values in the list are treated as glob patterns. For example, to match all packages in the LangChain ecosystem (`langchain-core`, `langchain-openai`, etc.): ```toml langchain = [\"langchain-*\"] ```\n\nCustom sections should typically be inserted into the `section-order` list to ensure that they're displayed as a standalone group and in the intended order, as in: ```toml section-order = [ \"future\", \"standard-library\", \"third-party\", \"first-party\", \"local-folder\", \"testing\" ] ```\n\nIf a custom section is omitted from `section-order`, imports in that section will be assigned to the `default-section` (which defaults to `third-party`).",
"type": [
"object",
"null"
Expand Down Expand Up @@ -3048,6 +3048,7 @@
"FURB11",
"FURB110",
"FURB113",
"FURB116",
"FURB118",
"FURB12",
"FURB129",
Expand Down Expand Up @@ -3573,6 +3574,9 @@
"PYI055",
"PYI056",
"PYI058",
"PYI059",
"PYI06",
"PYI062",
"Q",
"Q0",
"Q00",
Expand Down Expand Up @@ -3630,6 +3634,7 @@
"RUF1",
"RUF10",
"RUF100",
"RUF101",
"RUF2",
"RUF20",
"RUF200",
Expand Down
3 changes: 2 additions & 1 deletion src/validate_pyproject_schema_store/resources/tool.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"setuptools": "https://json.schemastore.org/partial-setuptools.json",
"poetry": "https://json.schemastore.org/partial-poetry.json",
"pdm": "https://json.schemastore.org/partial-pdm.json",
"pyright": "https://json.schemastore.org/partial-pyright.json"
"pyright": "https://json.schemastore.org/partial-pyright.json",
"uv": "https://json.schemastore.org/uv.json"
}
Loading
Loading