Accepting request 701237 from devel:languages:python

- Again tweak failing tests

- update to 4.3.18:
 - Fixed an issue with parsing files that contain unicode characters in Python 2
 - Fixed issue #924 - Pulling in pip internals causes depreciation warning
 - Fixed issue #938 - Providing a way to filter explicitly passed in files via configuration settings (`--filter-files`)
 - Improved interoperability with toml configuration files

- skip failing tests
- Update to 4.3.17:
  - Fixed issue #905 & #919: Import section headers behaving
    strangely

- Add missing recommended dependencies

- update to version 4.3.16:
 - Fixed issue #909 - skip and skip-glob are not enforced when using settings-path.
 - Fixed issue #907 - appdirs optional requirement does not correctly specify version
 - Fixed issue #902 - Too broad warning about missing toml package
 - Fixed issue #778 - remove `user` from known standard library as it's no longer in any supported Python version.

OBS-URL: https://build.opensuse.org/request/show/701237
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-isort?expand=0&rev=10
This commit is contained in:
Dominique Leuenberger 2019-05-08 13:15:53 +00:00 committed by Git OBS Bridge
commit ad764f770f
4 changed files with 58 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:96151fca2c6e736503981896495d344781b60d18bfda78dc11b290c6125ebdb6
size 67949

3
isort-4.3.18.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f09911f6eb114e5592abe635aded8bf3d2c3144ebcfcaf81ee32e7af7b7d1870
size 69073

View File

@ -1,3 +1,39 @@
-------------------------------------------------------------------
Tue May 7 08:06:20 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Again tweak failing tests
-------------------------------------------------------------------
Fri May 3 18:09:41 UTC 2019 - Sebastian Wagner <sebix+novell.com@sebix.at>
- update to 4.3.18:
- Fixed an issue with parsing files that contain unicode characters in Python 2
- Fixed issue #924 - Pulling in pip internals causes depreciation warning
- Fixed issue #938 - Providing a way to filter explicitly passed in files via configuration settings (`--filter-files`)
- Improved interoperability with toml configuration files
-------------------------------------------------------------------
Mon Apr 29 22:13:28 CEST 2019 - Matej Cepl <mcepl@suse.com>
- skip failing tests
- Update to 4.3.17:
- Fixed issue #905 & #919: Import section headers behaving
strangely
-------------------------------------------------------------------
Fri Mar 29 09:41:35 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Add missing recommended dependencies
-------------------------------------------------------------------
Sun Mar 24 08:31:58 UTC 2019 - Sebastian Wagner <sebix+novell.com@sebix.at>
- update to version 4.3.16:
- Fixed issue #909 - skip and skip-glob are not enforced when using settings-path.
- Fixed issue #907 - appdirs optional requirement does not correctly specify version
- Fixed issue #902 - Too broad warning about missing toml package
- Fixed issue #778 - remove `user` from known standard library as it's no longer in any supported Python version.
-------------------------------------------------------------------
Wed Mar 13 14:19:07 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -26,24 +26,35 @@
%bcond_with test
%endif
Name: python-isort%{psuffix}
Version: 4.3.15
Version: 4.3.18
Release: 0
Summary: A Python utility / library to sort Python imports
License: MIT
Group: Development/Languages/Python
URL: https://github.com/timothycrosley/isort
Source: https://files.pythonhosted.org/packages/source/i/isort/isort-%{version}.tar.gz
%if %{with test}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module pylama}
BuildRequires: %{python_module pytest}
BuildRequires: python-backports.functools_lru_cache
%endif
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-futures
BuildRequires: python-rpm-macros
Requires: python-setuptools
Recommends: python-appdirs >= 1.4.0
Recommends: python-pip
Recommends: python-pipreqs
Recommends: python-requirementslib
Recommends: python-toml
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module appdirs >= 1.4.0}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module pipreqs}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pylama}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requirementslib}
BuildRequires: %{python_module toml}
BuildRequires: python-backports.functools_lru_cache
%endif
%ifpython2
Requires: python-backports.functools_lru_cache
Requires: python-futures
@ -74,7 +85,7 @@ chmod -x LICENSE
%check
%if %{with test}
%python_expand py.test-%{$python_bin_suffix} -v
%pytest -k 'not (test_settings_path_skip_issue_909 or test_standard_library_deprecates_user_issue_778 or test_skip_paths_issue_938 or test_requirements_finder)'
%endif
%if !%{with test}