Accepting request 673031 from home:frispete:python
- update to version 1.12.2 - bug`408` Fix regression where keyring is unconditionally disabled. - update to version 1.12.1 - bug`404` Fix regression with upload exit code - update to version 1.12.0 - feature`395 major` Add twine check command to check long description - feature`392 major` Drop support for Python 3.3 - feature`363` Empower --skip-existing for Artifactory repositories - bug`367` Avoid MD5 when Python is compiled in FIPS mode - Fix source URL - add python-readme_renderer dependency - BuildRequire python2-pyblake2 for successful testing OBS-URL: https://build.opensuse.org/request/show/673031 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-twine?expand=0&rev=17
This commit is contained in:
parent
9088def128
commit
00c51ee418
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fdff00d235b964a9679fc0c127228eb83fb82b59552efb130cd878ace39f3473
|
|
||||||
size 55301
|
|
@ -3,6 +3,25 @@ Sat Feb 9 13:45:55 UTC 2019 - Matej Cepl <mcepl@suse.com>
|
|||||||
|
|
||||||
- Deduplicate installed files
|
- Deduplicate installed files
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 4 14:54:32 UTC 2019 - Hans-Peter Jansen <hpj@urpla.net>
|
||||||
|
|
||||||
|
- update to version 1.12.2
|
||||||
|
- bug`408` Fix regression where keyring is unconditionally disabled.
|
||||||
|
|
||||||
|
- update to version 1.12.1
|
||||||
|
- bug`404` Fix regression with upload exit code
|
||||||
|
|
||||||
|
- update to version 1.12.0
|
||||||
|
- feature`395 major` Add twine check command to check long description
|
||||||
|
- feature`392 major` Drop support for Python 3.3
|
||||||
|
- feature`363` Empower --skip-existing for Artifactory repositories
|
||||||
|
- bug`367` Avoid MD5 when Python is compiled in FIPS mode
|
||||||
|
|
||||||
|
- Fix source URL
|
||||||
|
- add python-readme_renderer dependency
|
||||||
|
- BuildRequire python2-pyblake2 for successful testing
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 21 09:30:29 UTC 2018 - tchvatal@suse.com
|
Mon May 21 09:30:29 UTC 2018 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@ -18,16 +18,17 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-twine
|
Name: python-twine
|
||||||
Version: 1.11.0
|
Version: 1.12.2
|
||||||
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
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/pypa/twine
|
URL: https://github.com/pypa/twine
|
||||||
Source: https://github.com/pypa/twine/archive/%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/t/twine/twine-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module pkginfo >= 1.4.2}
|
BuildRequires: %{python_module pkginfo >= 1.4.2}
|
||||||
BuildRequires: %{python_module pretend}
|
BuildRequires: %{python_module pretend}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
|
BuildRequires: %{python_module readme_renderer >= 24.0}
|
||||||
BuildRequires: %{python_module requests >= 2.17.0}
|
BuildRequires: %{python_module requests >= 2.17.0}
|
||||||
BuildRequires: %{python_module requests-toolbelt >= 0.8.0}
|
BuildRequires: %{python_module requests-toolbelt >= 0.8.0}
|
||||||
BuildRequires: %{python_module setuptools >= 0.7.0}
|
BuildRequires: %{python_module setuptools >= 0.7.0}
|
||||||
@ -35,6 +36,7 @@ BuildRequires: %{python_module tqdm >= 4.14}
|
|||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-pkginfo >= 1.4.2
|
Requires: python-pkginfo >= 1.4.2
|
||||||
|
Requires: python-readme_renderer >= 24.0
|
||||||
Requires: python-requests >= 2.17.0
|
Requires: python-requests >= 2.17.0
|
||||||
Requires: python-requests-toolbelt >= 0.8.0
|
Requires: python-requests-toolbelt >= 0.8.0
|
||||||
Requires: python-setuptools >= 0.7.0
|
Requires: python-setuptools >= 0.7.0
|
||||||
@ -43,14 +45,17 @@ Requires(post): update-alternatives
|
|||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
Recommends: python-keyring
|
Recommends: python-keyring
|
||||||
%ifpython2
|
%ifpython2
|
||||||
|
# tests/test_package.py will fail without pyblake2
|
||||||
|
BuildRequires: python2-pyblake2
|
||||||
Recommends: python-pyblake2
|
Recommends: python-pyblake2
|
||||||
%endif
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Twine is a utility for interacting with PyPI.
|
Twine is a utility for publishing Python packages on PyPI.
|
||||||
|
|
||||||
Currently it only supports registering projects and uploading distributions.
|
Currently it supports registering projects, uploading distributions, and
|
||||||
|
checking, if descriptions will render correctly.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n twine-%{version}
|
%setup -q -n twine-%{version}
|
||||||
|
3
twine-1.12.2.tar.gz
Normal file
3
twine-1.12.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c164c621ef3e04ee8c933559a2e4920e847005436b1a78703026ca5e011cf6c7
|
||||||
|
size 62691
|
Loading…
x
Reference in New Issue
Block a user