We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65cec73 commit de58016Copy full SHA for de58016
annotated_logger/__init__.py
@@ -29,6 +29,11 @@
29
if TYPE_CHECKING: # pragma: no cover
30
from collections.abc import MutableMapping
31
32
+# Use 0.0.0.dev1 and so on when working in a PR
33
+# Each push attempts to upload to testpypi, but it only works with a unique version
34
+# https://test.pypi.org/project/annotated-logger/
35
+# The dev versions in testpypi can then be pulled in to whatever project needed
36
+# the new feature.
37
VERSION = "1.2.1" # pragma: no mutate
38
39
T = TypeVar("T")
0 commit comments