Skip to content

Commit

Permalink
[CHIA-1676] Make ruff an optional dependency (#18780)
Browse files Browse the repository at this point in the history
Make ruff an optional dependency
  • Loading branch information
Quexington authored Oct 29, 2024
1 parent f126023 commit bc901da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ pyupgrade = { version = "3.16.0", optional = true }
# numpy = [
# {version="1.24.4", python = "<3.9", optional = true},
# {version="1.26.4", python = ">=3.9", optional = true}]
ruff = "0.7.1"
ruff = { version = "0.7.1", optional = true }


[tool.poetry.extras]
dev = ["aiohttp_cors", "black", "build", "coverage", "diff-cover", "flake8", "isort", "mypy", "pre-commit", "py3createtorrent", "pyinstaller", "pytest", "pytest-cov", "pytest-mock", "pytest-monitor", "pytest-xdist", "types-aiofiles", "types-cryptography", "types-pyyaml", "types-setuptools", "pyupgrade", "lxml"]
dev = ["aiohttp_cors", "black", "build", "coverage", "diff-cover", "flake8", "isort", "mypy", "pre-commit", "py3createtorrent", "pyinstaller", "pytest", "pytest-cov", "pytest-mock", "pytest-monitor", "pytest-xdist", "ruff", "types-aiofiles", "types-cryptography", "types-pyyaml", "types-setuptools", "pyupgrade", "lxml"]
upnp = ["miniupnpc"]
legacy_keyring = ["keyrings.cryptfile"]

Expand Down

0 comments on commit bc901da

Please sign in to comment.