From 8ee2c3a5fe66d06a4ce2a1ad18b8ce7d44b1c64c Mon Sep 17 00:00:00 2001 From: neothematrix Date: Tue, 26 May 2020 09:43:33 +0200 Subject: [PATCH] bump to version 0.8.2 --- packaging/rpm/python-pyzabbix.spec | 4 ++-- setup.py | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/packaging/rpm/python-pyzabbix.spec b/packaging/rpm/python-pyzabbix.spec index 81865b8..26a7692 100644 --- a/packaging/rpm/python-pyzabbix.spec +++ b/packaging/rpm/python-pyzabbix.spec @@ -17,7 +17,7 @@ Name: python-pyzabbix -Version: 0.7.4 +Version: 0.8.2 Release: 1 Url: http://github.com/lukecyca/pyzabbix Summary: Zabbix API Python interface @@ -32,7 +32,7 @@ Requires: python-requests >= 1.0 %description PyZabbix is a Python module for working with the Zabbix API. -Tested against Zabbix 1.8 through 3.0. +Tested against Zabbix 1.8 through 5.0. %prep %setup -q -n pyzabbix-%{version} diff --git a/setup.py b/setup.py index 0a5595e..8536711 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="pyzabbix", - version="0.8.1", + version="0.8.2", install_requires=[ "requests>=1.0", ], @@ -19,9 +19,11 @@ url="http://github.com/lukecyca/pyzabbix", classifiers=[ "Programming Language :: Python", - "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", - "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3,5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Development Status :: 4 - Beta",