Skip to content

Commit f5b93e7

Browse files
committed
chore: simpler build
1 parent 62585d2 commit f5b93e7

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ docs:
3838
.PHONY: build-test
3939
build-test:
4040
rm -rf venv
41-
uvx --from build pyproject-build
41+
uv build
4242
python3 -m venv venv
4343
. venv/bin/activate
4444
pip install dist/juju-${VERSION}-py3-none-any.whl
@@ -49,7 +49,7 @@ build-test:
4949
release:
5050
git fetch --tags
5151
rm dist/*.tar.gz dist/*.whl || true
52-
uvx --from build pyproject-build
52+
uv build
5353
uvx twine check dist/*
5454
uvx twine upload --repository juju dist/*
5555
git tag ${VERSION}

juju/client/proxy/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copyright 2024 Canonical Ltd.
2+
# Licensed under the Apache V2, see LICENCE file for details.
3+
"""Juju client proxy."""
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copyright 2024 Canonical Ltd.
2+
# Licensed under the Apache V2, see LICENCE file for details.
3+
"""Juju client proxy for k8s."""

0 commit comments

Comments
 (0)