Accepting request 1138499 from devel:languages:python
- update to 1.20.0: * Optimize _expand_named_fields * Add functionality to parse datetimes according C standard format codes. - update to 1.19.1: * Add support for sign specifiers in number formats. * Fix handling of unused alignment * modern packaging * universal wheel * Add test for stateful int_convert * Handle comparison of FixedTzOffset with other types of object OBS-URL: https://build.opensuse.org/request/show/1138499 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-parse?expand=0&rev=10
This commit is contained in:
commit
9f1524387a
BIN
parse-1.19.0.tar.gz
(Stored with Git LFS)
BIN
parse-1.19.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
parse-1.20.0.tar.gz
Normal file
3
parse-1.20.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bd28bae37714b45d5894d77160a16e2be36b64a3b618c81168b3684676aa498b
|
||||
size 28871
|
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 13 20:40:54 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.20.0:
|
||||
* Optimize _expand_named_fields
|
||||
* Add functionality to parse datetimes according C standard
|
||||
format codes.
|
||||
- update to 1.19.1:
|
||||
* Add support for sign specifiers in number formats.
|
||||
* Fix handling of unused alignment
|
||||
* modern packaging
|
||||
* universal wheel
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 25 09:34:44 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
@ -9,7 +22,7 @@ Wed Aug 25 09:34:44 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.c
|
||||
* Docs for slice change
|
||||
* Support slice access to results (#128)
|
||||
- from version 1.18.0
|
||||
* Add test for stateful int_convert
|
||||
* Add test for stateful int_convert
|
||||
* Make int_convert stateless
|
||||
- from version 1.17.0
|
||||
* Make left- and center-aligned search consume up to next space
|
||||
@ -32,7 +45,7 @@ Wed Mar 11 15:18:17 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
- update to 1.15.0
|
||||
* Several bugs with parsing hex, bin and oct numbers.
|
||||
* Handle fortran formatted float number, Bug fix & test case.
|
||||
* Handle comparison of FixedTzOffset with other types of object
|
||||
* Handle comparison of FixedTzOffset with other types of object
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 11 08:31:39 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-parse
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -18,14 +18,16 @@
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-parse
|
||||
Version: 1.19.0
|
||||
Version: 1.20.0
|
||||
Release: 0
|
||||
Summary: Python module for parsing strings using a "format" syntax
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/r1chardj0n3s/parse
|
||||
Source0: https://files.pythonhosted.org/packages/source/p/parse/parse-%{version}.tar.gz
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildArch: noarch
|
||||
@ -39,10 +41,10 @@ Parse strings using a specification based on the Python format() syntax.
|
||||
chmod a-x README.rst
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
@ -51,6 +53,8 @@ chmod a-x README.rst
|
||||
%files %{python_files}
|
||||
%license LICENSE
|
||||
%doc README.rst
|
||||
%{python_sitelib}/*
|
||||
%{python_sitelib}/parse.py
|
||||
%pycache_only %{python_sitelib}/__pycache__/parse.*
|
||||
%{python_sitelib}/parse-%{version}.dist-info
|
||||
|
||||
%changelog
|
||||
|
Loading…
x
Reference in New Issue
Block a user