Skip to content

Commit

Permalink
ci: fix typecheck failure
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Apr 17, 2024
1 parent b77acee commit 7a82934
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion calcipy/noxfile/_noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def build_dist(session: Union[NoxSession, NPSession]) -> None: # pragma: no cov
# https://github.com/cjolowicz/nox-poetry/blob/5772b66ebff8d5a3351a08ed402d3d31e48be5f8/src/nox_poetry/sessions.py#L233-L255
# https://github.com/cjolowicz/nox-poetry/blob/5772b66ebff8d5a3351a08ed402d3d31e48be5f8/src/nox_poetry/poetry.py#L111-L154
output = session.run(*shlex.split('poetry build --format=wheel --no-ansi'),
external=True, silent=True, stderr=None)
external=True, silent=True)
output = cast(str, output)
wheel = dist_path / output.split()[-1]
path_wheel = wheel.resolve().as_uri()
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ poetry config pypi-token.pypi ...
| `calcipy/tasks/types.py` | 20 | 0 | 0 | 89.3% |
| **Totals** | 1042 | 67 | 182 | 87.2% |

Generated on: 2024-04-16
Generated on: 2024-04-17
<!-- {cte} -->
2 changes: 1 addition & 1 deletion poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ mkdocs-material = {optional = true, version = ">=9.4.8"} # doc
mkdocs-section-index = {optional = true, version = ">=0.3.4"} # doc
mkdocstrings = {extras = ["python"], optional = true, version = ">=0.24.2"} # doc
mypy = {optional = true, version = ">=1.0.0"} # types
nox-poetry = {optional = true, version = ">=1.0.2"} # test
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"
Expand Down

0 comments on commit 7a82934

Please sign in to comment.