chore(deps): use py-dactyl from upstream instead of my fork
This commit is contained in:
parent
346963fd4f
commit
48c6289b2d
3 changed files with 78 additions and 75 deletions
|
@ -9,7 +9,10 @@
|
||||||
"hidden": false,
|
"hidden": false,
|
||||||
"disabled": false,
|
"disabled": false,
|
||||||
"min_bot_version": "3.5.0",
|
"min_bot_version": "3.5.0",
|
||||||
"min_python_version": [3, 8, 0],
|
"min_python_version": [3, 10, 0],
|
||||||
"requirements": ["git+https://github.com/cswimr/pydactyl", "websockets"],
|
"requirements": [
|
||||||
|
"git+https://github.com/iamkubi/pydactyl@v2.0.5",
|
||||||
|
"websockets"
|
||||||
|
],
|
||||||
"tags": ["pterodactyl", "minecraft", "server", "management"]
|
"tags": ["pterodactyl", "minecraft", "server", "management"]
|
||||||
}
|
}
|
||||||
|
|
138
pyproject.toml
138
pyproject.toml
|
@ -7,36 +7,36 @@ license = { file = "LICENSE" }
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiosqlite>=0.20.0",
|
"aiosqlite>=0.20.0",
|
||||||
"beautifulsoup4>=4.12.3",
|
"beautifulsoup4>=4.12.3",
|
||||||
"colorthief>=0.2.1",
|
"colorthief>=0.2.1",
|
||||||
"markdownify>=0.14.1",
|
"markdownify>=0.14.1",
|
||||||
"numpy>=2.2.2",
|
"numpy>=2.2.2",
|
||||||
"phx-class-registry>=5.1.1",
|
"phx-class-registry>=5.1.1",
|
||||||
"pillow>=10.4.0",
|
"pillow>=10.4.0",
|
||||||
"pip>=25.0",
|
"pip>=25.0",
|
||||||
"py-dactyl",
|
"py-dactyl",
|
||||||
"pydantic>=2.10.6",
|
"pydantic>=2.10.6",
|
||||||
"red-discordbot>=3.5.14",
|
"red-discordbot>=3.5.14",
|
||||||
"watchdog>=6.0.0",
|
"watchdog>=6.0.0",
|
||||||
"websockets>=14.2",
|
"websockets>=14.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
documentation = [
|
documentation = [
|
||||||
"mkdocs>=1.6.1",
|
"mkdocs>=1.6.1",
|
||||||
"mkdocs-git-authors-plugin>=0.9.2",
|
"mkdocs-git-authors-plugin>=0.9.2",
|
||||||
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
|
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
|
||||||
"mkdocs-material[imaging]>=9.5.50",
|
"mkdocs-material[imaging]>=9.5.50",
|
||||||
"mkdocs-redirects>=1.2.2",
|
"mkdocs-redirects>=1.2.2",
|
||||||
"mkdocstrings[python]>=0.27.0",
|
"mkdocstrings[python]>=0.27.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.uv]
|
[tool.uv]
|
||||||
dev-dependencies = ["pylint>=3.3.3", "ruff>=0.9.3", "sqlite-web>=0.6.4"]
|
dev-dependencies = ["pylint>=3.3.3", "ruff>=0.9.3", "sqlite-web>=0.6.4"]
|
||||||
|
|
||||||
[tool.uv.sources]
|
[tool.uv.sources]
|
||||||
py-dactyl = { git = "https://github.com/cswimr/pydactyl" }
|
py-dactyl = { git = "https://github.com/iamkubi/pydactyl", tag = "v2.0.5" }
|
||||||
|
|
||||||
[tool.basedpyright]
|
[tool.basedpyright]
|
||||||
typeCheckingMode = "basic"
|
typeCheckingMode = "basic"
|
||||||
|
@ -45,32 +45,32 @@ reportAttributeAccessIssue = false # disabled because `commands.group.command` i
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
# Exclude a variety of commonly ignored directories.
|
# Exclude a variety of commonly ignored directories.
|
||||||
exclude = [
|
exclude = [
|
||||||
".bzr",
|
".bzr",
|
||||||
".direnv",
|
".direnv",
|
||||||
".eggs",
|
".eggs",
|
||||||
".git",
|
".git",
|
||||||
".git-rewrite",
|
".git-rewrite",
|
||||||
".hg",
|
".hg",
|
||||||
".ipynb_checkpoints",
|
".ipynb_checkpoints",
|
||||||
".mypy_cache",
|
".mypy_cache",
|
||||||
".nox",
|
".nox",
|
||||||
".pants.d",
|
".pants.d",
|
||||||
".pyenv",
|
".pyenv",
|
||||||
".pytest_cache",
|
".pytest_cache",
|
||||||
".pytype",
|
".pytype",
|
||||||
".ruff_cache",
|
".ruff_cache",
|
||||||
".svn",
|
".svn",
|
||||||
".tox",
|
".tox",
|
||||||
".venv",
|
".venv",
|
||||||
".vscode",
|
".vscode",
|
||||||
"__pypackages__",
|
"__pypackages__",
|
||||||
"_build",
|
"_build",
|
||||||
"buck-out",
|
"buck-out",
|
||||||
"build",
|
"build",
|
||||||
"dist",
|
"dist",
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"site-packages",
|
"site-packages",
|
||||||
"venv",
|
"venv",
|
||||||
]
|
]
|
||||||
|
|
||||||
# Same as Black.
|
# Same as Black.
|
||||||
|
@ -85,29 +85,29 @@ target-version = "py311"
|
||||||
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
||||||
# McCabe complexity (`C901`) by default.
|
# McCabe complexity (`C901`) by default.
|
||||||
select = [
|
select = [
|
||||||
"I",
|
"I",
|
||||||
"N",
|
"N",
|
||||||
"F",
|
"F",
|
||||||
"W",
|
"W",
|
||||||
"E",
|
"E",
|
||||||
"G",
|
"G",
|
||||||
"A",
|
"A",
|
||||||
"COM",
|
"COM",
|
||||||
"INP",
|
"INP",
|
||||||
"T20",
|
"T20",
|
||||||
"PLC",
|
"PLC",
|
||||||
"PLE",
|
"PLE",
|
||||||
"PLW",
|
"PLW",
|
||||||
"PLR",
|
"PLR",
|
||||||
"LOG",
|
"LOG",
|
||||||
"SLF",
|
"SLF",
|
||||||
"ERA",
|
"ERA",
|
||||||
"FIX",
|
"FIX",
|
||||||
"PERF",
|
"PERF",
|
||||||
"C4",
|
"C4",
|
||||||
"EM",
|
"EM",
|
||||||
"RET",
|
"RET",
|
||||||
"RSE",
|
"RSE",
|
||||||
]
|
]
|
||||||
ignore = ["PLR0911", "PLR0912", "PLR0915", "PLR2004", "PLR0913", "EM101"]
|
ignore = ["PLR0911", "PLR0912", "PLR0915", "PLR2004", "PLR0913", "EM101"]
|
||||||
|
|
||||||
|
|
8
uv.lock
generated
8
uv.lock
generated
|
@ -592,7 +592,7 @@ name = "importlib-metadata"
|
||||||
version = "8.5.0"
|
version = "8.5.0"
|
||||||
source = { registry = "https://pypi.org/simple" }
|
source = { registry = "https://pypi.org/simple" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "zipp" },
|
{ name = "zipp", marker = "python_full_version >= '3.12'" },
|
||||||
]
|
]
|
||||||
sdist = { url = "https://files.pythonhosted.org/packages/cd/12/33e59336dca5be0c398a7482335911a33aa0e20776128f038019f1a95f1b/importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7", size = 55304 }
|
sdist = { url = "https://files.pythonhosted.org/packages/cd/12/33e59336dca5be0c398a7482335911a33aa0e20776128f038019f1a95f1b/importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7", size = 55304 }
|
||||||
wheels = [
|
wheels = [
|
||||||
|
@ -1227,8 +1227,8 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "py-dactyl"
|
name = "py-dactyl"
|
||||||
version = "2.0.4"
|
version = "2.0.5"
|
||||||
source = { git = "https://github.com/cswimr/pydactyl#a8ad40c21b3fe2248451fd85a1146b32d29f10df" }
|
source = { git = "https://github.com/iamkubi/pydactyl?tag=v2.0.5#ef5d8b9b807f67067dc1214097abf01ddb7e551f" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "requests" },
|
{ name = "requests" },
|
||||||
]
|
]
|
||||||
|
@ -1701,7 +1701,7 @@ requires-dist = [
|
||||||
{ name = "phx-class-registry", specifier = ">=5.1.1" },
|
{ name = "phx-class-registry", specifier = ">=5.1.1" },
|
||||||
{ name = "pillow", specifier = ">=10.4.0" },
|
{ name = "pillow", specifier = ">=10.4.0" },
|
||||||
{ name = "pip", specifier = ">=25.0" },
|
{ name = "pip", specifier = ">=25.0" },
|
||||||
{ name = "py-dactyl", git = "https://github.com/cswimr/pydactyl" },
|
{ name = "py-dactyl", git = "https://github.com/iamkubi/pydactyl?tag=v2.0.5" },
|
||||||
{ name = "pydantic", specifier = ">=2.10.6" },
|
{ name = "pydantic", specifier = ">=2.10.6" },
|
||||||
{ name = "red-discordbot", specifier = ">=3.5.14" },
|
{ name = "red-discordbot", specifier = ">=3.5.14" },
|
||||||
{ name = "watchdog", specifier = ">=6.0.0" },
|
{ name = "watchdog", specifier = ">=6.0.0" },
|
||||||
|
|
Loading…
Add table
Reference in a new issue