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 68193f0 commit e2f88fbCopy full SHA for e2f88fb
LICENSE.txt
@@ -1,4 +1,3 @@
1
-blurb version 1.0
2
Part of the blurb package.
3
Copyright 2015-2018 by Larry Hastings
4
src/blurb/__init__.py
@@ -0,0 +1,3 @@
+import importlib.metadata
+
+__version__ = importlib.metadata.version(__name__)
src/blurb/blurb.py
@@ -1,9 +1,6 @@
#!/usr/bin/env python3
"""Command-line tool to manage CPython Misc/NEWS.d entries."""
-__version__ = "1.1.0"
-
5
##
6
-## blurb version 1.0
7
## Part of the blurb package.
8
## Copyright 2015-2018 by Larry Hastings
9
@@ -62,6 +59,8 @@
62
59
import time
63
60
import unittest
64
61
+from . import __version__
65
66
#
67
# This template is the canonical list of acceptable section names!
0 commit comments