From da166001d78b4d369be780c85d527e40f2c78ee4 Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Mon, 13 Jun 2022 20:43:22 -0600 Subject: [PATCH] Use standard Python contextlib --- python-schema.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python-schema.spec b/python-schema.spec index 4354100..ae89215 100644 --- a/python-schema.spec +++ b/python-schema.spec @@ -2,7 +2,7 @@ Name: python-%{modname} Version: 0.7.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Simple data validation library License: MIT @@ -33,6 +33,7 @@ Python 3 version. %prep %autosetup -n %{modname}-%{version} +sed -i -e /contextlib2/d requirements.txt %build %py3_build @@ -51,6 +52,9 @@ py.test-%{python3_version} -v %{python3_sitelib}/__pycache__/%{modname}.* %changelog +* Tue Jun 14 2022 Orion Poplawski - 0.7.5-3 +- Use standard Python contextlib + * Mon Jun 13 2022 Python Maint - 0.7.5-2 - Rebuilt for Python 3.11