summaryrefslogtreecommitdiff
path: root/alot/__init__.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-02-01 08:17:51 +0000
committerPatrick Totzke <patricktotzke@gmail.com>2012-02-01 08:17:51 +0000
commitb9b6644ae32d3d489dfe8ca61854dc26bcc75822 (patch)
tree5f71b465ce98badcea0712d059f212ffb0e45372 /alot/__init__.py
parenta049ec2fed898d8c828de74c8f4449f2378c9545 (diff)
revert to hardcoded version strings
before, we tried to be smart and wrote an auto-generated version string via `git describe` to alot.VERSION at setup time that got read by alot.__init__ later on. This reverts to a hardcoded version string in alot.__version__. It makes tedious calls to `git update-index --assume-unchanged VERSION` unnecessary and makes life easier for packagers. closes issue #299
Diffstat (limited to 'alot/__init__.py')
-rw-r--r--alot/__init__.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/alot/__init__.py b/alot/__init__.py
index bef59344..d0cee6ce 100644
--- a/alot/__init__.py
+++ b/alot/__init__.py
@@ -1,8 +1,6 @@
-from version import read_version
-
__productname__ = 'alot'
-__version__ = read_version()
-__copyright__ = "Copyright (C) 2011 Patrick Totzke"
+__version__ = '0.21+'
+__copyright__ = "Copyright (C) 2012 Patrick Totzke"
__author__ = "Patrick Totzke"
__author_email__ = "patricktotzke@gmail.com"
__description__ = "Terminal MUA using notmuch mail"