From 36c64faed8f0039a4dae4ab3ec942489bc465e8b Mon Sep 17 00:00:00 2001 From: penelope Date: Sat, 2 Apr 2022 11:30:36 +0800 Subject: [PATCH] Fix build error caused by py3.10+ wildcard --- python-ntlm-auth.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/python-ntlm-auth.spec b/python-ntlm-auth.spec index 3085efc..263684a 100644 --- a/python-ntlm-auth.spec +++ b/python-ntlm-auth.spec @@ -4,7 +4,7 @@ %global library_name ntlm_auth Name: python-%{srcname} Version: 1.1.0 -Release: 1 +Release: 2 Summary: Python 3 compatible NTLM library License: MIT URL: https://pypi.python.org/pypi/%{pypi_name} @@ -42,8 +42,11 @@ rm -rf %{pypi_name}.egg-info %doc CHANGES.md README.md %license LICENSE %{python3_sitelib}/%{library_name} -%{python3_sitelib}/%{library_name}-%{version}-py?.?.egg-info +%{python3_sitelib}/%{library_name}-%{version}-py%{python3_version}.egg-info %changelog +* Sat Apr 02 2022 yangping - 1.1.0-2 +- Fix build error caused by py3.10+ wildcard + * Mon May 17 2021 Pengju Jiang - 1.1.0-1 - package init -- Gitee