🐛 Update pyproject.toml and uv.lock for execution environments and package versioning

This commit is contained in:
2025-03-08 20:34:50 +01:00
parent 01f27a8c47
commit c0783fec69
2 changed files with 4 additions and 7 deletions

View File

@@ -60,6 +60,7 @@ exclude = [
[tool.pyright] [tool.pyright]
pythonVersion = "3.12" pythonVersion = "3.12"
reportAny = false reportAny = false
executionEnvironments = [{ root = "src/pycord_rest/_version.py", reportDeprecated = false }]
[tool.ruff] [tool.ruff]
target-version = "py312" target-version = "py312"
@@ -68,20 +69,17 @@ indent-width = 4
[tool.ruff.format] [tool.ruff.format]
quote-style = "double" quote-style = "double"
indent-style = "space" indent-style = "space"
skip-magic-trailing-comma = false skip-magic-trailing-comma = false
line-ending = "auto" line-ending = "auto"
docstring-code-format = false docstring-code-format = false
docstring-code-line-length = "dynamic" docstring-code-line-length = "dynamic"
exclude = [
"src/pycord_rest/_version.py"
]
[tool.ruff.lint] [tool.ruff.lint]
select = ["ALL"] select = ["ALL"]
per-file-ignores = {}
extend-ignore = [ extend-ignore = [
"N999", "N999",
"D104", "D104",

1
uv.lock generated
View File

@@ -299,7 +299,6 @@ wheels = [
[[package]] [[package]]
name = "pycord-rest-bot" name = "pycord-rest-bot"
version = "0.1.0"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "fastapi" }, { name = "fastapi" },