Skip to content

Commit 25a0079

Browse files
authored
Merge pull request #14 from KyleKing/feat-time
2 parents ab2350a + 1bf33e5 commit 25a0079

21 files changed

+912
-1484
lines changed

.calcipy_packaging.lock

Lines changed: 222 additions & 454 deletions
Large diffs are not rendered by default.

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Answer file maintained by Copier for: https://github.com/KyleKing/calcipy_template
33
# DO NOT MODIFY THIS FILE. Edit by re-running copier and changing responses to the questions
44
# Check into version control.
5-
_commit: 1.10.7
5+
_commit: 2.0.3
66
_src_path: gh:KyleKing/calcipy_template
77
author_email: [email protected]
88
author_name: Kyle King

.github/workflows/ci_pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name: CI Pipeline
1313
- pyproject.toml
1414

1515
env:
16-
COLUMNS: 120
16+
# On Windows, snapshots are skipped because of subtle differences in whitespace
1717
PYTEST_ADDOPTS: "--snapshot-warn-unused"
1818

1919
jobs:

.github/workflows/update_docs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ jobs:
2929
with:
3030
os: ${{ matrix.os }}
3131
python-version: ${{ matrix.python-version }}
32-
- name: Setup Graphviz
33-
uses: ts-graphviz/setup-graphviz@v2
3432

3533
# https://github.com/mkdocs/mkdocs/discussions/2369#discussioncomment-625475
3634
- name: Configure git user

.pre-commit-config.yaml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ repos:
4242
- id: trailing-whitespace
4343
exclude: __snapshots__/.*\.ambr
4444
- repo: https://github.com/commitizen-tools/commitizen
45-
rev: v3.27.0
45+
rev: v3.29.1
4646
hooks:
4747
- id: commitizen
4848
- repo: https://github.com/executablebooks/mdformat
4949
rev: 0.7.17
5050
hooks:
5151
- id: mdformat
5252
additional_dependencies:
53-
- "mdformat-mkdocs[recommended]>=2.1.0"
53+
- "mdformat-mkdocs[recommended]>=3.0.0"
5454
- "mdformat-gfm-alerts>=1.0.1"
5555
args: [--wrap=no]
5656
exclude: _.+\.md|CHANGELOG\.md|CODE_TAG_SUMMARY\.md
@@ -72,21 +72,14 @@ repos:
7272
exclude: \.copier-answers\.yml|tests/.*/cassettes/.*\.yaml|__snapshots__/.*\.json
7373
types_or: [html, javascript, json, shell, yaml]
7474
stages: ["pre-commit"]
75-
- repo: https://github.com/adrienverge/yamllint.git
76-
rev: v1.35.1
77-
hooks:
78-
- id: yamllint
79-
exclude: tests/.*/cassettes/.*\.yaml
80-
stages: ["pre-commit"]
8175
- repo: https://github.com/pappasam/toml-sort
8276
rev: v0.23.1
8377
hooks:
8478
- id: toml-sort-fix
85-
# Don't remove comments and sort order from test files
86-
exclude: poetry\.lock|config_default.toml|demo_config.toml
79+
exclude: poetry\.lock
8780
stages: ["pre-commit"]
8881
- repo: https://github.com/KyleKing/calcipy
89-
rev: 3.0.1
82+
rev: 4.0.0
9083
hooks:
9184
- id: copier-forbidden-files
9285
- id: lint-fix

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python 3.12.0 3.9.13
1+
python 3.12.5 3.9.13

.yamllint.yaml

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ docker compose logs --follow | awk 'match($0, / \| \{.+/) { print substr($0, RST
4242

4343
## Configuration
4444

45-
Optionally, specify a path to a custom configuration file. See an example configuration file at: [tests/config_default.toml](https://github.com/KyleKing/tail-jsonl/blob/main/tests/config_default.toml)
45+
Optionally, specify a path to a custom configuration file. For an example configuration file see: [./tests/config_default.toml](https://github.com/KyleKing/tail-jsonl/blob/main/tests/config_default.toml)
4646

4747
```sh
4848
echo '...' | tail-jsonl --config-path=~/.tail-jsonl.toml

docs/docs/Advanced_Documentation.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/docs/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22

33
### Fix
44

5+
- and support 'levelname'
6+
- support 'time'
57
- drop support for Python 3.8
68
- update dependencies
79

810
### Refactor
911

12+
- update dependencies
1013
- finish pydantic v2 migration
1114

1215
## 1.2.5 (2023-07-23)

0 commit comments

Comments
 (0)