From d60709c4b1c00f3da7a823905e05ff9b36e8a6cc Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Apr 28 2016 02:22:00 +0000 Subject: setup: use the __version__ attribute to set the version in setup.py Conflicts: setup.py --- diff --git a/setup.py b/setup.py index 99c150f..d67c155 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ from setuptools import setup - +from centpkg import __version__ setup( name = "centpkg", - version = "0.4.4", + version = __version__, author = "Brian Stinson", author_email = "bstinson@ksu.edu", description = "CentOS Plugin to rpkg for managing RPM package sources", diff --git a/src/centpkg/__init__.py b/src/centpkg/__init__.py index 655069a..8332535 100644 --- a/src/centpkg/__init__.py +++ b/src/centpkg/__init__.py @@ -25,7 +25,7 @@ from pyrpkg import Commands, rpkgError from centos import centos_cert from . import cli -__version__ = '0.5.0' +__version__ = '0.4.5' class DistGitDirectory(object):