Skip to content

Commit

Permalink
fix: remove pip-check
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Jun 7, 2024
1 parent ec65810 commit 0895050
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
5 changes: 1 addition & 4 deletions calcipy/tasks/stale.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

from ..check_for_stale_packages import check_for_stale_packages as cfsp
from ..cli import task
from ..invoke_helpers import run
from .executable_utils import python_dir


@task(
Expand All @@ -14,7 +12,6 @@
'stale_months': 'Cutoff in months for when a package may be stale enough to be a risk',
},
)
def check_for_stale_packages(ctx: Context, *, stale_months: int = 48) -> None:
def check_for_stale_packages(ctx: Context, *, stale_months: int = 48) -> None: # noqa: ARG001
"""Identify stale dependencies."""
cfsp(stale_months=stale_months)
run(ctx, f'{python_dir()}/pip-check --cmd="poetry run pip" --hide-unchanged')
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ version = "2.1.0"
[tool.poetry.dependencies]
python = "^3.9.13"
arrow = {optional = true, version = ">=1.2.3"} # tags
autopep8 = {optional = true, version = ">=2.0.1"} # lint
basedpyright = {optional = true, version = ">=1.6.0"} # types
beartype = ">=0.18.2"
bidict = {optional = true, version = ">=0.22.1"} # stale
Expand All @@ -71,7 +70,6 @@ mkdocstrings = {extras = ["python"], optional = true, version = ">=0.24.2"} # do
mypy = {optional = true, version = ">=1.0.0"} # types
nox-poetry = {optional = true, version = ">=1.0.3"} # test
pandas = {optional = true, version = ">=1.5.3"} # docs,tags
pip-check = {optional = true, version = ">=2.8.1"} # lint
pydantic = ">=2.7.0"
pylint = {optional = true, version = ">=3.0.2"} # doc,pylint
pymdown-extensions = {optional = true, version = ">=10.0.1"} # docs
Expand Down Expand Up @@ -108,8 +106,6 @@ doc = [
"transitions",
]
lint = [
"autopep8",
"pip-check",
"ruff",
]
nox = ["nox-poetry", "virtualenv"]
Expand Down

0 comments on commit 0895050

Please sign in to comment.