14
0

Accepting request 824167 from home:mcalabkova:branches:devel:languages:python

- Update to 1.2.4
  * Filter out the None results of Windows python finder.
  * Unnest the mixed output from ``find_all_python_versions()``.
  * Non-core versions of python will no longer sort ahead of core python versions.
  * Reduced dependencies by removing ``vistir``,, ``crayons`` and intermediate calls.
  * Fixed a bug which could cause python searches to fail when ``pyenv global`` was 
    set with repeated identical versions.

OBS-URL: https://build.opensuse.org/request/show/824167
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pythonfinder?expand=0&rev=13
This commit is contained in:
2020-08-03 15:04:20 +00:00
committed by Git OBS Bridge
parent bee2a8a4aa
commit c00f83bfb2
4 changed files with 19 additions and 5 deletions

View File

@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pythonfinder
Version: 1.2.1
Version: 1.2.4
Release: 0
Summary: A tool to locate Python on the system
License: MIT
@@ -31,7 +31,6 @@ BuildRequires: python-rpm-macros
Requires: python-attrs
Requires: python-cached-property
Requires: python-click
Requires: python-crayons
Requires: python-packaging
Requires: python-six
Requires: python-vistir >= 0.2.5
@@ -48,6 +47,10 @@ BuildRequires: %{python_module pytest}
BuildRequires: %{python_module six}
BuildRequires: %{python_module vistir >= 0.2.5}
# /SECTION
%ifpython2
Requires: pathlib2
Requires: python-backports.functools_lru_cache
%endif
%python_subpackages
%description