diff --git a/code_quality.sh b/code_quality.sh index 032085ca5..ee7be7d16 100755 --- a/code_quality.sh +++ b/code_quality.sh @@ -13,7 +13,8 @@ black --experimental-string-processing swarms/ # Run ruff on the 'swarms' directory. # Add any additional flags if needed according to your version of ruff. -ruff swarms/ +ruff swarms/ +#--unsafe_fix # YAPF yapf --recursive --in-place --verbose --style=google --parallel swarms diff --git a/pyproject.toml b/pyproject.toml index dca7c789e..0f5a37fd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "swarms" -version = "2.1.7" +version = "2.1.8" description = "Swarms - Pytorch" license = "MIT" authors = ["Kye Gomez "] homepage = "https://github.com/kyegomez/swarms" -documentation = "" # Add this if you have documentation. +documentation = "https://swarms.apac.ai" # Add this if you have documentation. readme = "README.md" # Assuming you have a README.md repository = "https://github.com/kyegomez/swarms" keywords = ["artificial intelligence", "deep learning", "optimizers", "Prompt Engineering"] @@ -30,7 +30,7 @@ asyncio = "*" nest_asyncio = "*" einops = "*" google-generativeai = "*" -torch = "2.1.0" +torch = "*" langchain-experimental = "*" playwright = "*" duckduckgo-search = "*" @@ -63,10 +63,6 @@ soundfile = "*" torchvision = "*" rich = "*" -[tool.poetry.dev-dependencies] -first_dependency = {git = "https://github.com/IDEA-Research/GroundingDINO.git"} -second_dependency = {git = "https://github.com/facebookresearch/segment-anything.git"} - [tool.poetry.group.lint.dependencies] ruff = "^0.0.249" types-toml = "^0.10.8.1"