Compare commits
1 Commits
Author | SHA256 | Date | |
---|---|---|---|
499ae2a787 |
@@ -1,15 +0,0 @@
|
|||||||
Index: passlib-1.7.4/passlib/tests/utils.py
|
|
||||||
===================================================================
|
|
||||||
--- passlib-1.7.4.orig/passlib/tests/utils.py
|
|
||||||
+++ passlib-1.7.4/passlib/tests/utils.py
|
|
||||||
@@ -3360,6 +3360,10 @@ class OsCryptMixin(HandlerCase):
|
|
||||||
if hasattr(self.handler, "orig_prefix"):
|
|
||||||
raise self.skipTest("not applicable to wrappers")
|
|
||||||
|
|
||||||
+ # crypt module removed in Python 3.13
|
|
||||||
+ if sys.version_info[:2] >= (3, 13):
|
|
||||||
+ raise self.skipTest("no crypt module with Python 3.13")
|
|
||||||
+
|
|
||||||
# look for first entry that matches current system
|
|
||||||
# XXX: append "/" + platform.release() to string?
|
|
||||||
# XXX: probably should rework to support rows being dicts w/ "minver" / "maxver" keys,
|
|
@@ -1,11 +1,5 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 11 04:34:50 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
Thu Sep 26 10:26:35 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
- Add patch no-crypt-with-python-313.patch:
|
|
||||||
* Do not run tests requiring 'crypt' with Python 3.13.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Thu Sep 26 10:44:49 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
|
||||||
|
|
||||||
- Only run the full testsuite in openSUSE
|
- Only run the full testsuite in openSUSE
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-passlib
|
# spec file
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -36,8 +36,6 @@ URL: https://foss.heptapod.net/python-libs/passlib
|
|||||||
Source: https://files.pythonhosted.org/packages/source/p/passlib/passlib-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/p/passlib/passlib-%{version}.tar.gz
|
||||||
# PATCH-FIX-OPENSUSE Posted to https://foss.heptapod.net/python-libs/passlib/-/issues/185
|
# PATCH-FIX-OPENSUSE Posted to https://foss.heptapod.net/python-libs/passlib/-/issues/185
|
||||||
Patch0: no-pkg_resources.patch
|
Patch0: no-pkg_resources.patch
|
||||||
# PATCH-FIX-OPENSUSE Skip crypt tests under Python 3.13
|
|
||||||
Patch1: no-crypt-with-python-313.patch
|
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
|
Reference in New Issue
Block a user