Compare commits
1 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 65a6a8bd38 |
BIN
nocaselist-1.0.6.tar.gz
LFS
Normal file
BIN
nocaselist-1.0.6.tar.gz
LFS
Normal file
Binary file not shown.
BIN
nocaselist-2.0.2.tar.gz
LFS
BIN
nocaselist-2.0.2.tar.gz
LFS
Binary file not shown.
@@ -1,44 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Tue Jun 4 20:40:32 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
|
||||||
|
|
||||||
- update to 2.0.2:
|
|
||||||
* support python 3.12
|
|
||||||
* cleanup pip backtracking
|
|
||||||
* Fix content type of pacakge description
|
|
||||||
* use f-streings
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Tue May 7 20:23:22 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
|
||||||
|
|
||||||
- update to 2.0.1:
|
|
||||||
* Installation of this package using “setup.py” is no longer
|
|
||||||
supported. Use “pip” instead.
|
|
||||||
* Test: Fixed issues resulting from removal of support for
|
|
||||||
pytest.warns(None) in pytest version 8
|
|
||||||
* Fixed safety issues up to 2024-05-04
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Dec 1 17:04:19 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
|
||||||
|
|
||||||
- update to 2.0.0:
|
|
||||||
* typing hints
|
|
||||||
* Fixed coveralls issues with KeyError and HTTP 422
|
|
||||||
Unprocessable Entity.
|
|
||||||
* Added support for passing slices to '__setitem__()' and
|
|
||||||
'__delitem__()'. Expanded the testcases accordingly.
|
|
||||||
* Fixed incorrect error handling when passing objects of
|
|
||||||
unsupported types to the right hand operand of the rich
|
|
||||||
comparison methods of NocaseList. This previously caused
|
|
||||||
AttributeError "'list' object has no attribute 'lower'" and
|
|
||||||
TypeError "'int' object is not iterable" to be raised which was
|
|
||||||
confusing. This is now handled by returning 'NotImplemented'
|
|
||||||
from these methods as recommended by Python, causing TypeError
|
|
||||||
with a proper message to be raised by Python.#
|
|
||||||
* Resurrected support for byte strings as list values in the
|
|
||||||
default implementation of the casefold method. The list can now
|
|
||||||
contains unicode strings and byte strings.
|
|
||||||
* Added type hints and type checking with MyPy (issue #96).
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Oct 1 13:01:45 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
Sat Oct 1 13:01:45 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
@@ -55,9 +14,9 @@ Mon Feb 1 18:14:57 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
|||||||
* Migrated from Travis and Appveyor to GitHub Actions. This required changes
|
* Migrated from Travis and Appveyor to GitHub Actions. This required changes
|
||||||
in several areas including dependent packages used for testing and
|
in several areas including dependent packages used for testing and
|
||||||
coverage. This did not cause any changes on dependent packages used for the
|
coverage. This did not cause any changes on dependent packages used for the
|
||||||
installation of the package.
|
installation of the package.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 13 14:42:53 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
|
Tue Oct 13 14:42:53 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
- initial specfile 1.0.3
|
- initial specfile 1.0.3
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-nocaselist
|
# spec file for package python-nocaselist
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2022 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
|
||||||
@@ -16,24 +16,19 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-nocaselist
|
Name: python-nocaselist
|
||||||
Version: 2.0.2
|
Version: 1.0.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A case-insensitive list for Python
|
Summary: A case-insensitive list for Python
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/pywbem/nocaselist
|
URL: https://github.com/pywbem/nocaselist
|
||||||
Source: https://files.pythonhosted.org/packages/source/n/nocaselist/nocaselist-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/n/nocaselist/nocaselist-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module pip}
|
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module six}
|
|
||||||
BuildRequires: %{python_module typing-extensions}
|
|
||||||
BuildRequires: %{python_module wheel}
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-typing-extensions
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
@@ -45,19 +40,19 @@ of its items.
|
|||||||
%setup -q -n nocaselist-%{version}
|
%setup -q -n nocaselist-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%python_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%pyproject_install
|
%python_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%pytest
|
%pytest
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README.md
|
%doc README.rst
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{python_sitelib}/nocaselist
|
%{python_sitelib}/nocaselist
|
||||||
%{python_sitelib}/nocaselist-%{version}.dist-info
|
%{python_sitelib}/nocaselist-%{version}*info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user