Skip to content

Commit

Permalink
feat!: remove 'stale' module and pytest-recording
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Nov 7, 2024
1 parent cb70051 commit 16d3d6c
Show file tree
Hide file tree
Showing 18 changed files with 61 additions and 2,057 deletions.
738 changes: 0 additions & 738 deletions .calcipy_packaging.lock

This file was deleted.

6 changes: 0 additions & 6 deletions calcipy/check_for_stale_packages/__init__.py

This file was deleted.

303 changes: 0 additions & 303 deletions calcipy/check_for_stale_packages/_check_for_stale_packages.py

This file was deleted.

3 changes: 1 addition & 2 deletions calcipy/tasks/all_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from calcipy.cli import task
from calcipy.collection import DeferredTask, _build_task

from . import cl, doc, lint, nox, pack, stale, tags, test, types
from . import cl, doc, lint, nox, pack, tags, test, types
from .most_tasks import ns


Expand Down Expand Up @@ -73,7 +73,6 @@ def with_progress(items: Any, offset: int = 0) -> TaskList:
nox.noxfile.with_kwargs(session='tests'), # pyright: ignore[reportFunctionMemberAccess]
pack.check_licenses,
pack.lock,
stale.check_for_stale_packages,
tags.collect_code_tags,
test.check, # Expected to fail for calcipy
]
Expand Down
4 changes: 0 additions & 4 deletions calcipy/tasks/most_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@
from . import pack

ns.add_collection(Collection.from_module(pack))
with suppress(RuntimeError):
from . import stale

ns.add_collection(Collection.from_module(stale))
with suppress(RuntimeError):
from . import tags

Expand Down
17 changes: 0 additions & 17 deletions calcipy/tasks/stale.py

This file was deleted.

6 changes: 6 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## Unreleased

## 4.3.0 (2024-10-31)

### Feat

- add optional delimiters for alignment

### Fix

- downgrade 'could not parse' to debug
Expand Down
Loading

0 comments on commit 16d3d6c

Please sign in to comment.