Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lightkube"
version = "0.19.0"
version = "0.19.1"
description = "Lightweight kubernetes client library"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -89,6 +89,9 @@ select = [
"I", # isort
]

[tool.ruff.lint.isort]
known-first-party = ["lightkube"]

[[tool.mypy.overrides]]
module = [
"lightkube.codecs",
Expand Down
2 changes: 1 addition & 1 deletion setup-test-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -euo pipefail

if [ -d "../lightkube-models" ]; then
echo "Found 'lightkube-models' locally. Will use that as source root."
SOURCE_DIR=$(realpath "../lightkube-models")
SOURCE_DIR=$(realpath "../lightkube-models/src")
else
echo "Did not find 'lightkube-models' locally. Will use the venv's site packages folder as source root."
SOURCE_DIR=$(uv run --no-project python -c 'import site; print(site.getsitepackages()[0])')
Expand Down
Loading