Skip to content

Commit

Permalink
Remove uv pinning.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Oct 8, 2024
1 parent b11fd3c commit 44e1dd8
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,36 +12,36 @@ readme = "README.md"
keywords = ["comfyui", "stable diffusion"]

maintainers = [
{ name = "Yoland Yan", email = "yoland@drip.art" },
{ name = "James Kwon", email = "hongilkwon316@gmail.com" },
{ name = "Robin Huang", email = "robin@drip.art" },
{ name = "Dr.Lt.Data", email = "dr.lt.data@gmail.com" },
{ name = "Yoland Yan", email = "yoland@drip.art" },
{ name = "James Kwon", email = "hongilkwon316@gmail.com" },
{ name = "Robin Huang", email = "robin@drip.art" },
{ name = "Dr.Lt.Data", email = "dr.lt.data@gmail.com" },
]

classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]

dependencies = [
"charset-normalizer>=3.0.0",
"GitPython",
"httpx",
"mixpanel",
"packaging",
"pathspec",
"psutil",
"pyyaml",
"questionary",
"requests",
"rich",
"tomlkit",
"typer>=0.9.0",
"typing-extensions>=4.7.0",
"uv<=0.4.0",
"websocket-client",
"semver~=3.0.2",
"charset-normalizer>=3.0.0",
"GitPython",
"httpx",
"mixpanel",
"packaging",
"pathspec",
"psutil",
"pyyaml",
"questionary",
"requests",
"rich",
"tomlkit",
"typer>=0.9.0",
"typing-extensions>=4.7.0",
"uv",
"websocket-client",
"semver~=3.0.2",
]

[project.optional-dependencies]
Expand All @@ -65,9 +65,9 @@ target-version = "py39"

[tool.ruff.lint]
select = [
"E4", # default
"E7", # default
"E9", # default
"F", # default
"I", # isort-like behavior (import statement sorting)
"E4", # default
"E7", # default
"E9", # default
"F", # default
"I", # isort-like behavior (import statement sorting)
]

0 comments on commit 44e1dd8

Please sign in to comment.