From de58016c34e7419b350ce0c45cbcb48e67005a66 Mon Sep 17 00:00:00 2001 From: crimsonknave Date: Wed, 11 Dec 2024 18:19:40 -0500 Subject: [PATCH] Added a note about dev versions and testpypi --- annotated_logger/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/annotated_logger/__init__.py b/annotated_logger/__init__.py index 5c40bc2..9d398a6 100644 --- a/annotated_logger/__init__.py +++ b/annotated_logger/__init__.py @@ -29,6 +29,11 @@ if TYPE_CHECKING: # pragma: no cover from collections.abc import MutableMapping +# Use 0.0.0.dev1 and so on when working in a PR +# Each push attempts to upload to testpypi, but it only works with a unique version +# https://test.pypi.org/project/annotated-logger/ +# The dev versions in testpypi can then be pulled in to whatever project needed +# the new feature. VERSION = "1.2.1" # pragma: no mutate T = TypeVar("T")