14
0
forked from pool/python-regex

Accepting request 839915 from home:jayvdb:branches:devel:languages:python

- Update to 2020.9.27
  * Fuzzy-matching fixes
  * Fix Memory Error in regex.findall 
  * Added \h as an alias to [[:blank:]].
  * Improved performance of string sets.

OBS-URL: https://build.opensuse.org/request/show/839915
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-regex?expand=0&rev=23
This commit is contained in:
Tomáš Chvátal
2020-10-07 06:14:38 +00:00
committed by Git OBS Bridge
parent c4506dbc60
commit 2ad6a0fa59
4 changed files with 15 additions and 5 deletions

View File

@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-regex
Version: 2020.4.4
Version: 2020.9.27
Release: 0
Summary: Alternative regular expression module for Python
License: Python-2.0
@@ -57,7 +57,8 @@ An alternate regex implementation. It differs from "re" in that
%check
export PYTHONDONTWRITEBYTECODE=1
%pytest_arch %{buildroot}%{$python_sitearch}/regex
# test_main invokes unittest.main, which raises SystemExit, which fails on pytest.
%pytest_arch %{buildroot}%{$python_sitearch}/regex -k 'not test_main'
%files %{python_files}
%doc README.rst