forked from pool/python-twine
Accepting request 822402 from home:mcalabkova:branches:devel:languages:python
- update to 3.2.0 * :feature:`666` Improve display of HTTP errors during upload * :feature:`649` Use red text when printing errors on the command line * :feature:`652` Print packages and signatures to be uploaded when using ``--verbose`` option * 🐛`655 major` Update URL to ``.pypirc`` specfication * :feature:`602` Require repository URL scheme to be ``http`` or ``https`` * 🐛`612 major` Don't raise an exception when Python version can't be parsed from filename OBS-URL: https://build.opensuse.org/request/show/822402 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-twine?expand=0&rev=30
This commit is contained in:
committed by
Git OBS Bridge
parent
3e60255a02
commit
3334ef17e4
@@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jul 23 12:22:51 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
||||||
|
|
||||||
|
- update to 3.2.0
|
||||||
|
* :feature:`666` Improve display of HTTP errors during upload
|
||||||
|
* :feature:`649` Use red text when printing errors on the command line
|
||||||
|
* :feature:`652` Print packages and signatures to be uploaded when using
|
||||||
|
``--verbose`` option
|
||||||
|
* :bug:`655 major` Update URL to ``.pypirc`` specfication
|
||||||
|
* :feature:`602` Require repository URL scheme to be ``http`` or ``https``
|
||||||
|
* :bug:`612 major` Don't raise an exception when Python version can't be
|
||||||
|
parsed from filename
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Apr 5 07:40:00 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
Sun Apr 5 07:40:00 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
||||||
|
|
||||||
|
@@ -19,12 +19,13 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-twine
|
Name: python-twine
|
||||||
Version: 3.1.1
|
Version: 3.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Collection of utilities for interacting with PyPI
|
Summary: Collection of utilities for interacting with PyPI
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: https://github.com/pypa/twine
|
URL: https://github.com/pypa/twine
|
||||||
Source: https://files.pythonhosted.org/packages/source/t/twine/twine-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/t/twine/twine-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module colorama >= 0.4.3}
|
||||||
BuildRequires: %{python_module importlib-metadata}
|
BuildRequires: %{python_module importlib-metadata}
|
||||||
BuildRequires: %{python_module jaraco.envs}
|
BuildRequires: %{python_module jaraco.envs}
|
||||||
BuildRequires: %{python_module keyring >= 15.1}
|
BuildRequires: %{python_module keyring >= 15.1}
|
||||||
@@ -36,17 +37,20 @@ BuildRequires: %{python_module pytest}
|
|||||||
BuildRequires: %{python_module readme_renderer >= 21.0}
|
BuildRequires: %{python_module readme_renderer >= 21.0}
|
||||||
BuildRequires: %{python_module requests >= 2.20}
|
BuildRequires: %{python_module requests >= 2.20}
|
||||||
BuildRequires: %{python_module requests-toolbelt >= 0.8.0}
|
BuildRequires: %{python_module requests-toolbelt >= 0.8.0}
|
||||||
|
BuildRequires: %{python_module rfc3986 >= 1.4.0}
|
||||||
BuildRequires: %{python_module setuptools >= 0.7.0}
|
BuildRequires: %{python_module setuptools >= 0.7.0}
|
||||||
BuildRequires: %{python_module setuptools_scm >= 1.15}
|
BuildRequires: %{python_module setuptools_scm >= 1.15}
|
||||||
BuildRequires: %{python_module tqdm >= 4.14}
|
BuildRequires: %{python_module tqdm >= 4.14}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
Requires: python-colorama >= 0.4.3
|
||||||
Requires: python-importlib-metadata
|
Requires: python-importlib-metadata
|
||||||
Requires: python-keyring >= 15.1
|
Requires: python-keyring >= 15.1
|
||||||
Requires: python-pkginfo >= 1.4.2
|
Requires: python-pkginfo >= 1.4.2
|
||||||
Requires: python-readme_renderer >= 21.0
|
Requires: python-readme_renderer >= 21.0
|
||||||
Requires: python-requests >= 2.20
|
Requires: python-requests >= 2.20
|
||||||
Requires: python-requests-toolbelt >= 0.8.0
|
Requires: python-requests-toolbelt >= 0.8.0
|
||||||
|
Requires: python-rfc3986 >= 1.4.0
|
||||||
Requires: python-setuptools >= 0.7.0
|
Requires: python-setuptools >= 0.7.0
|
||||||
Requires: python-tqdm >= 4.14
|
Requires: python-tqdm >= 4.14
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
@@ -63,6 +67,7 @@ checking, if descriptions will render correctly.
|
|||||||
%setup -q -n twine-%{version}
|
%setup -q -n twine-%{version}
|
||||||
|
|
||||||
sed -i '1s/^#!.*//' twine/__main__.py
|
sed -i '1s/^#!.*//' twine/__main__.py
|
||||||
|
sed -i 's/--cov.*$//' pytest.ini
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d561a5e511f70275e5a485a6275ff61851c16ffcb3a95a602189161112d9f160
|
|
||||||
size 146258
|
|
3
twine-3.2.0.tar.gz
Normal file
3
twine-3.2.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:34352fd52ec3b9d29837e6072d5a2a7c6fe4290e97bba46bb8d478b5c598f7ab
|
||||||
|
size 148834
|
Reference in New Issue
Block a user