summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2019-11-29 06:37:12 +0100
committerGeorg Brandl <georg@python.org>2019-11-29 06:37:12 +0100
commit2842f8ffd3dbab55f888f980c76be4f80235a4df (patch)
tree17778f3440fbf56b1b54636885714d94a14fd203 /setup.py
parentf4040be5b2fdd84bc2663cd12855c1e731fd162b (diff)
downloadpygments-git-2842f8ffd3dbab55f888f980c76be4f80235a4df.tar.gz
keep version number in one place, dont do the "x.y.z+" anymore
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a973451b..d4555e3f 100755
--- a/setup.py
+++ b/setup.py
@@ -23,9 +23,11 @@ are:
from setuptools import setup, find_packages
+from pygments import __version__
+
setup(
name = 'Pygments',
- version = '2.5.2',
+ version = __version__,
url = 'http://pygments.org/',
license = 'BSD License',
author = 'Georg Brandl',