From 8880f692d347e1ac7d0b0de993325d70b69c38aa Mon Sep 17 00:00:00 2001 From: Dennis Kaarsemaker Date: Tue, 6 Oct 2020 19:51:02 +0200 Subject: [PATCH] Switch to setuptools --- CHANGES | 1 + docs/conf.py | 4 ++-- hpilo.py | 2 +- setup.py | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 8d8710e..1a4bba9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,5 @@ Version 4.4, 2020-10-06 +Version 4.4.1, 2020-10-06 * Support HPE fwpkg firmware packaging * Bugfixes in delete_sso_server and get_generic_ldap_enabled diff --git a/docs/conf.py b/docs/conf.py index 58d2f51..b0104eb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '4.4' +version = '4.4.1' # The full version, including alpha/beta/rc tags. -release = '4.4' +release = '4.4.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/hpilo.py b/hpilo.py index 6080483..d75ebb8 100644 --- a/hpilo.py +++ b/hpilo.py @@ -1,7 +1,7 @@ # (c) 2011-2020 Dennis Kaarsemaker # see COPYING for license details -__version__ = "4.4" +__version__ = "4.4.1" import codecs import io diff --git a/setup.py b/setup.py index d6414c6..b9f942c 100755 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ #!/usr/bin/python -from distutils.core import setup +from setuptools import setup setup(name = "python-hpilo", - version = "4.4", + version = "4.4.1", author = "Dennis Kaarsemaker", author_email = "dennis@kaarsemaker.net", url = "http://github.com/seveas/python-hpilo",