Skip to content

Commit

Permalink
build: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Dec 8, 2021
1 parent 561583f commit a32391d
Show file tree
Hide file tree
Showing 9 changed files with 891 additions and 827 deletions.
348 changes: 174 additions & 174 deletions .calcipy_packaging.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ repos:
]
stages: [commit-msg]
- repo: https://github.com/asottile/pyupgrade
rev: v2.29.0
rev: v2.29.1
hooks:
- id: pyupgrade
stages: [push]
args: ["--keep-runtime-typing"]
- repo: https://github.com/asottile/add-trailing-comma
rev: v2.2.0
rev: v2.2.1
hooks:
- id: add-trailing-comma
stages: [push]
Expand Down
6 changes: 4 additions & 2 deletions calcipy/doit_tasks/doit_globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,10 @@ class TestingConfig(_PathAttrBase): # noqa: H601 # pylint: disable=too-many-in
path_tests: Union[Path, str] = attr.ib(validator=type_validator(), default=Path('tests'))
"""Relative path to the tests directory. Default is `tests`."""

args_pytest: str = attr.ib(validator=type_validator(),
default='--exitfirst --showlocals --failed-first --new-first --verbose --doctest-modules')
args_pytest: str = attr.ib(
validator=type_validator(),
default='--exitfirst --showlocals --failed-first --new-first --verbose --doctest-modules',
)
"""Default arguments to Pytest. In short form, the defaults are `-x -l --ff --nf -vv`."""

args_diff: str = attr.ib(validator=type_validator(), default='--fail-under=65 --compare-branch=origin/main')
Expand Down
6 changes: 6 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

### Feat

- add attrs_strict

## 2021.0.6.0 (2021-10-31)

### Feat

- trim trailing whitespace from doc output

### Fix
Expand Down
11 changes: 6 additions & 5 deletions docs/docs/CODE_TAG_SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Auto-Generated by `calcipy`
- line 166 PLANNED: Simplify and choose one way of using Radon

- calcipy/doit_tasks/packaging.py
- line 146 HACK: Check that this works then refactor (shouldn't be global)
- line 272 TBD: Handle non-pypi domains and format the URL accordingly (i.e. TestPyPi, etc.)
- line 147 HACK: Check that this works then refactor (shouldn't be global)
- line 273 TBD: Handle non-pypi domains and format the URL accordingly (i.e. TestPyPi, etc.)

- calcipy/doit_tasks/templates/text.mako
- line 82 PLANNED: handle multiline descriptions
Expand All @@ -38,8 +38,9 @@ Auto-Generated by `calcipy`

- pyproject.toml
- line 27 PLANNED: Pending calver support: https://github.com/commitizen-tools/commitizen/pull/385
- line 76 TODO: Implement fully optional imports with: https://github.com/KyleKing/calcipy/issues/19#issuecomment-807886404
- line 101 PLANNED: Temporary - a plugin expected livereload to be installed...
- line 82 TODO: Implement fully optional imports with: https://github.com/KyleKing/calcipy/issues/19#issuecomment-807886404
- line 103 PLANNED: Temporary - a plugin expected livereload to be installed...
- line 158 TODO: Run in nox-only?

- tests/configuration.py
- line 24 TODO: Replace magic numbers in tests with meta-data about the test project
Expand All @@ -48,6 +49,6 @@ Auto-Generated by `calcipy`
- line 20 FIXME: Replace MockLogger with a more generic alternative. See:
- line 132 TODO: Capture logging output and check...

Found code tags for FIXME (1), TODO (9), PLANNED (10), HACK (1), TBD (1)
Found code tags for FIXME (1), TODO (10), PLANNED (10), HACK (1), TBD (1)

<!-- calcipy:skip_tags -->
14 changes: 7 additions & 7 deletions docs/docs/DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,24 +50,24 @@ poetry run doit run lock document deploy_docs publish
| File | Statements | Missing | Excluded | Coverage |
|:-----------------------------------------|-------------:|----------:|-----------:|:-----------|
| `calcipy/__init__.py` | 7 | 0 | 0 | 100.0% |
| `calcipy/code_tag_collector.py` | 74 | 6 | 0 | 91.9% |
| `calcipy/code_tag_collector.py` | 75 | 6 | 0 | 92.0% |
| `calcipy/dev/__init__.py` | 0 | 0 | 0 | 100.0% |
| `calcipy/dev/conftest.py` | 16 | 0 | 23 | 100.0% |
| `calcipy/dev/noxfile.py` | 22 | 1 | 80 | 95.5% |
| `calcipy/doit_tasks/__init__.py` | 13 | 0 | 0 | 100.0% |
| `calcipy/doit_tasks/base.py` | 50 | 10 | 3 | 80.0% |
| `calcipy/doit_tasks/code_tags.py` | 10 | 0 | 0 | 100.0% |
| `calcipy/doit_tasks/doc.py` | 136 | 7 | 5 | 94.9% |
| `calcipy/doit_tasks/doit_globals.py` | 166 | 4 | 10 | 97.6% |
| `calcipy/doit_tasks/doit_globals.py` | 167 | 4 | 10 | 97.6% |
| `calcipy/doit_tasks/file_search.py` | 34 | 0 | 2 | 100.0% |
| `calcipy/doit_tasks/lint.py` | 81 | 3 | 0 | 96.3% |
| `calcipy/doit_tasks/packaging.py` | 132 | 12 | 3 | 90.9% |
| `calcipy/doit_tasks/summary_reporter.py` | 22 | 0 | 40 | 100.0% |
| `calcipy/doit_tasks/packaging.py` | 133 | 12 | 3 | 91.0% |
| `calcipy/doit_tasks/summary_reporter.py` | 23 | 0 | 40 | 100.0% |
| `calcipy/doit_tasks/test.py` | 58 | 9 | 0 | 84.5% |
| `calcipy/dot_dict.py` | 7 | 0 | 0 | 100.0% |
| `calcipy/file_helpers.py` | 78 | 7 | 3 | 91.0% |
| `calcipy/file_helpers.py` | 78 | 6 | 3 | 92.3% |
| `calcipy/log_helpers.py` | 61 | 6 | 0 | 90.2% |
| **Totals** | 967 | 65 | 169 | 93.3% |
| **Totals** | 971 | 64 | 169 | 93.4% |

Generated on: 2021-10-31T11:46:54.320400
Generated on: 2021-12-07T21:02:55.054219
<!-- {cte} -->
Loading

0 comments on commit a32391d

Please sign in to comment.