From fef684b6fcff35849e5244f83e133b51b28775e9 Mon Sep 17 00:00:00 2001 From: FrantiĊĦek Zatloukal Date: Nov 14 2021 09:40:21 +0000 Subject: Release 2.1.5 --- diff --git a/python-resultsdb_api.spec b/python-resultsdb_api.spec index 0cd7f8f..0c8da65 100644 --- a/python-resultsdb_api.spec +++ b/python-resultsdb_api.spec @@ -1,7 +1,7 @@ Name: python-resultsdb_api # NOTE: if you update version, *make sure* to also update `setup.py` -Version: 2.1.4 -Release: 3%{?dist} +Version: 2.1.5 +Release: 1%{?dist} Summary: Interface api to ResultsDB License: GPLv2+ @@ -32,17 +32,15 @@ Python3 interface to resultsdb. %prep %autosetup -p1 -n resultsdb_api-%{version} -%check -## FIXME: fix the test suite -## https://pagure.io/taskotron/resultsdb_api/issue/1 -# make test - %build %py3_build %install %py3_install +%check +%pytest + %files -n python3-resultsdb_api %doc README.md %license LICENSE @@ -51,6 +49,17 @@ Python3 interface to resultsdb. %{python3_sitelib}/resultsdb_api-%{version}*.egg-info %changelog +* Sun Nov 14 2021 Frantisek Zatloukal - 2.1.5-1 +- Drop use of deprecated Retry parameter +- Drop unnecessary `_KEEP` and just `None` instead +- Make tox work (just runs pytest for now) +- Port tests to unittest.mock and ResultsDB API v2 (#1) +- Simplify update_testcase +- update_testcase: fix variable name +- ResultsDBAuth: it's `@staticmethod`, not `@static_method` +- Drop Python 2 string type blob +- Enable tests during the rpm build + * Sun Nov 14 2021 Frantisek Zatloukal - 2.1.4-3 - Revert backported patch for auth code diff --git a/setup.py b/setup.py index ae03df4..e2236d6 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from setuptools import setup setup( name = 'resultsdb_api', py_modules = ['resultsdb_api'], - version = '2.1.4', + version = '2.1.5', description = 'Library for simplifying the communication with ResultsDB', author = 'Josef Skladanka', author_email = 'jskladan@redhat.com',