SHA256
1
0
forked from pool/python-isort

Accepting request 1083098 from home:bnavigator:branches:devel:languages:python

- Update to 5.12.0
  * Add the ability to restrict which directories isort works
    against (#1967) @vkomarov-r7
  * updated format strings to fstrings (#2076) @marksmayo
  * Simplify typeshed integration test (#2075) @AlexWaygood
  * Fix re-export sorter (#2065) @parafoxia
  * Removal Python 3.7 (#2064) @staticdev
  * Added test case and fix for cython pure python import (#2063)
    @jtoledo1974

OBS-URL: https://build.opensuse.org/request/show/1083098
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isort?expand=0&rev=105
This commit is contained in:
Benjamin Greiner 2023-04-26 19:47:15 +00:00 committed by Git OBS Bridge
parent 9dbaabf48c
commit 4dc8f95f1c
4 changed files with 20 additions and 6 deletions

View File

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

BIN
isort-5.12.0-gh.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Wed Apr 26 19:37:28 UTC 2023 - Ben Greiner <code@bnavigator.de>
- Update to 5.12.0
* Add the ability to restrict which directories isort works
against (#1967) @vkomarov-r7
* updated format strings to fstrings (#2076) @marksmayo
* Simplify typeshed integration test (#2075) @AlexWaygood
* Fix re-export sorter (#2065) @parafoxia
* Removal Python 3.7 (#2064) @staticdev
* Added test case and fix for cython pure python import (#2063)
@jtoledo1974
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 19 11:36:34 UTC 2023 - Ben Greiner <code@bnavigator.de> Thu Jan 19 11:36:34 UTC 2023 - Ben Greiner <code@bnavigator.de>

View File

@ -26,14 +26,14 @@
%endif %endif
Name: python-isort%{psuffix} Name: python-isort%{psuffix}
Version: 5.11.4 Version: 5.12.0
Release: 0 Release: 0
Summary: A Python utility / library to sort Python imports Summary: A Python utility / library to sort Python imports
License: MIT License: MIT
URL: https://pycqa.github.io/isort/ URL: https://pycqa.github.io/isort/
# tests and example projects are not packaged for PyPI, get them from Github # tests and example projects are not packaged for PyPI, get them from Github
Source: https://github.com/PyCQA/isort/archive/%{version}.tar.gz#/isort-%{version}-gh.tar.gz Source: https://github.com/PyCQA/isort/archive/%{version}.tar.gz#/isort-%{version}-gh.tar.gz
BuildRequires: %{python_module base >= 3.7} BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module pip} BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry-core} BuildRequires: %{python_module poetry-core}
BuildRequires: fdupes BuildRequires: fdupes
@ -42,6 +42,7 @@ Requires(post): update-alternatives
Requires(postun):update-alternatives Requires(postun):update-alternatives
Recommends: python-colorama >= 0.4.3 Recommends: python-colorama >= 0.4.3
Recommends: python-pip-api Recommends: python-pip-api
Recommends: python-pip-shims >= 0.5.2
Recommends: python-pipreqs Recommends: python-pipreqs
Recommends: python-setuptools Recommends: python-setuptools
Suggests: git-core Suggests: git-core
@ -70,7 +71,7 @@ isort your python imports for you so you don't have to.
isort is a Python utility / library to sort imports alphabetically, and isort is a Python utility / library to sort imports alphabetically, and
automatically separated into sections and by type. It provides a command line automatically separated into sections and by type. It provides a command line
utility, Python library and plugins for various editors to quickly sort all your utility, Python library and plugins for various editors to quickly sort all your
imports. It requires Python 3.6+ to run but supports formatting Python 2 code imports. It requires Python 3.8+ to run but supports formatting Python 2 code
too. too.
%prep %prep