From 85cf5fa96b7bda197a02a570cf4cefda248482a8d7931060ef1d4d8420de9c44 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Sun, 24 Mar 2019 08:37:51 +0000 Subject: [PATCH 1/5] - 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/package/show/devel:languages:python/python-isort?expand=0&rev=21 --- isort-4.3.15.tar.gz | 3 --- isort-4.3.16.tar.gz | 3 +++ python-isort.changes | 9 +++++++++ python-isort.spec | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) delete mode 100644 isort-4.3.15.tar.gz create mode 100644 isort-4.3.16.tar.gz diff --git a/isort-4.3.15.tar.gz b/isort-4.3.15.tar.gz deleted file mode 100644 index b7d8279..0000000 --- a/isort-4.3.15.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:96151fca2c6e736503981896495d344781b60d18bfda78dc11b290c6125ebdb6 -size 67949 diff --git a/isort-4.3.16.tar.gz b/isort-4.3.16.tar.gz new file mode 100644 index 0000000..068cca8 --- /dev/null +++ b/isort-4.3.16.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f8e3f0f0b7249e9fad7e5c41e2113aba44969798a26452ee790c06f155d4ec +size 68434 diff --git a/python-isort.changes b/python-isort.changes index fc0e942..7411978 100644 --- a/python-isort.changes +++ b/python-isort.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Sun Mar 24 08:31:58 UTC 2019 - Sebastian Wagner + +- 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 diff --git a/python-isort.spec b/python-isort.spec index 6f97ff0..8decfa7 100644 --- a/python-isort.spec +++ b/python-isort.spec @@ -26,7 +26,7 @@ %bcond_with test %endif Name: python-isort%{psuffix} -Version: 4.3.15 +Version: 4.3.16 Release: 0 Summary: A Python utility / library to sort Python imports License: MIT From b5de76d209c37508dcec05396a158d0be412982ca283fba462e5fb49440a06de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Fri, 29 Mar 2019 09:42:00 +0000 Subject: [PATCH 2/5] - Add missing recommended dependencies OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isort?expand=0&rev=22 --- python-isort.changes | 5 +++++ python-isort.spec | 25 ++++++++++++++++++------- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/python-isort.changes b/python-isort.changes index 7411978..49b47d0 100644 --- a/python-isort.changes +++ b/python-isort.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Mar 29 09:41:35 UTC 2019 - Tomáš Chvátal + +- Add missing recommended dependencies + ------------------------------------------------------------------- Sun Mar 24 08:31:58 UTC 2019 - Sebastian Wagner diff --git a/python-isort.spec b/python-isort.spec index 8decfa7..687127f 100644 --- a/python-isort.spec +++ b/python-isort.spec @@ -33,17 +33,28 @@ 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 %endif %if !%{with test} From fb8cc2097de52c8fb1eb9526af447f9efe33d41c0b66881bc509e2606a403ee1 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 29 Apr 2019 20:22:27 +0000 Subject: [PATCH 3/5] - skip failing tests - Update to 4.3.17: - Fixed issue #905 & #919: Import section headers behaving strangely OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isort?expand=0&rev=24 --- isort-4.3.16.tar.gz | 3 --- isort-4.3.17.tar.gz | 3 +++ python-isort.changes | 8 ++++++++ python-isort.spec | 4 ++-- 4 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 isort-4.3.16.tar.gz create mode 100644 isort-4.3.17.tar.gz diff --git a/isort-4.3.16.tar.gz b/isort-4.3.16.tar.gz deleted file mode 100644 index 068cca8..0000000 --- a/isort-4.3.16.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08f8e3f0f0b7249e9fad7e5c41e2113aba44969798a26452ee790c06f155d4ec -size 68434 diff --git a/isort-4.3.17.tar.gz b/isort-4.3.17.tar.gz new file mode 100644 index 0000000..99302e8 --- /dev/null +++ b/isort-4.3.17.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:268067462aed7eb2a1e237fcb287852f22077de3fb07964e87e00f829eea2d1a +size 68797 diff --git a/python-isort.changes b/python-isort.changes index 49b47d0..293143a 100644 --- a/python-isort.changes +++ b/python-isort.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Mon Apr 29 22:13:28 CEST 2019 - Matej Cepl + +- 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 diff --git a/python-isort.spec b/python-isort.spec index 687127f..482e71b 100644 --- a/python-isort.spec +++ b/python-isort.spec @@ -26,7 +26,7 @@ %bcond_with test %endif Name: python-isort%{psuffix} -Version: 4.3.16 +Version: 4.3.17 Release: 0 Summary: A Python utility / library to sort Python imports License: MIT @@ -85,7 +85,7 @@ chmod -x LICENSE %check %if %{with test} -%pytest +%pytest -k 'not (test_settings_path_skip_issue_909 or test_standard_library_deprecates_user_issue_778)' %endif %if !%{with test} From f93a23df1233bfc6b423b7cdce8d69fb794a7103db8d8879dc74e381a08bcbe4 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Fri, 3 May 2019 18:10:29 +0000 Subject: [PATCH 4/5] - 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 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isort?expand=0&rev=25 --- isort-4.3.17.tar.gz | 3 --- isort-4.3.18.tar.gz | 3 +++ python-isort.changes | 9 +++++++++ python-isort.spec | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) delete mode 100644 isort-4.3.17.tar.gz create mode 100644 isort-4.3.18.tar.gz diff --git a/isort-4.3.17.tar.gz b/isort-4.3.17.tar.gz deleted file mode 100644 index 99302e8..0000000 --- a/isort-4.3.17.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:268067462aed7eb2a1e237fcb287852f22077de3fb07964e87e00f829eea2d1a -size 68797 diff --git a/isort-4.3.18.tar.gz b/isort-4.3.18.tar.gz new file mode 100644 index 0000000..2b70dfc --- /dev/null +++ b/isort-4.3.18.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09911f6eb114e5592abe635aded8bf3d2c3144ebcfcaf81ee32e7af7b7d1870 +size 69073 diff --git a/python-isort.changes b/python-isort.changes index 293143a..293bce4 100644 --- a/python-isort.changes +++ b/python-isort.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Fri May 3 18:09:41 UTC 2019 - Sebastian Wagner + +- 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 diff --git a/python-isort.spec b/python-isort.spec index 482e71b..14d52ae 100644 --- a/python-isort.spec +++ b/python-isort.spec @@ -26,7 +26,7 @@ %bcond_with test %endif Name: python-isort%{psuffix} -Version: 4.3.17 +Version: 4.3.18 Release: 0 Summary: A Python utility / library to sort Python imports License: MIT From 8c822730a4e7524d59949b376c701735a0fde962d0d8691c3abd0602570b1e4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 7 May 2019 08:06:31 +0000 Subject: [PATCH 5/5] - Again tweak failing tests OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isort?expand=0&rev=26 --- python-isort.changes | 5 +++++ python-isort.spec | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/python-isort.changes b/python-isort.changes index 293bce4..6a5f8be 100644 --- a/python-isort.changes +++ b/python-isort.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue May 7 08:06:20 UTC 2019 - Tomáš Chvátal + +- Again tweak failing tests + ------------------------------------------------------------------- Fri May 3 18:09:41 UTC 2019 - Sebastian Wagner diff --git a/python-isort.spec b/python-isort.spec index 14d52ae..2aef517 100644 --- a/python-isort.spec +++ b/python-isort.spec @@ -85,7 +85,7 @@ chmod -x LICENSE %check %if %{with test} -%pytest -k 'not (test_settings_path_skip_issue_909 or test_standard_library_deprecates_user_issue_778)' +%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}