From a2aeba1a00e1b5b89d048facd2ca1c6605ebff47 Mon Sep 17 00:00:00 2001 From: Tobias McVey Date: Thu, 16 Oct 2025 21:03:25 +0200 Subject: [PATCH 1/3] dont echo the commands from justfile when run --- justfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/justfile b/justfile index 56bf2f3..f30b265 100644 --- a/justfile +++ b/justfile @@ -12,38 +12,38 @@ IMPORT_PROJECT := "amplitude_data_wrapper" just --list # install and run -run: +@run: uv run # install dependencies -install: +@install: uv sync --frozen # upgrade dependencies -update: +@update: uv lock --upgrade # check code with ruff -check: +@check: ruff check # format with ruff -format: +@format: ruff format # build package -build: check format package-test +@build: check format package-test rm -rf dist/; \ uv build # test package can be installed and imported -package-test: +@package-test: uv run --with {{PYPI_PROJECT}} --no-project -- python -c "import {{IMPORT_PROJECT}}" # publish on python package index -pypi_publish: +@pypi_publish: uv publish --token {{PYPI_TOKEN}} # publish on test python package index -testpypi_publish: +@testpypi_publish: uv publish --index testpypi --token {{TESTPYPI_TOKEN}} From 12d461b77aface430ffc5002484b584f03265d67 Mon Sep 17 00:00:00 2001 From: Tobias McVey Date: Thu, 16 Oct 2025 21:09:29 +0200 Subject: [PATCH 2/3] update package version for release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c9ed54f..788dd0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "amplitude-data-wrapper" -version = "0.5.5" +version = "0.5.6" description = "python wrapper for using the amplitude analytics and taxonomy APIs" authors = [ {name = "Tobias McVey", email = "tobias.mcvey@nav.no"}, From f21a2cf474e26e29394aea77c34b9c61a8328719 Mon Sep 17 00:00:00 2001 From: Tobias McVey Date: Thu, 16 Oct 2025 21:35:51 +0200 Subject: [PATCH 3/3] use SPDX expression for license --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 788dd0b..7d495cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [ readme = "README.md" requires-python = ">=3.10" keywords = ["amplitude"] -license = {file = "LICENSE"} +license = "MIT" dependencies = [ "requests>=2.32.3", "tqdm>=4.67.1",