forked from pool/python-tox
Accepting request 703496 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/703496 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-tox?expand=0&rev=27
This commit is contained in:
commit
9a31011ea1
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 16 17:04:41 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.11.1:
|
||||||
|
* When creating virtual environments we no longer ask the python to tell
|
||||||
|
its path, but rather use the discovered path.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 15 20:35:25 UTC 2019 - Jonathan Harker <jharker@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.11.0:
|
||||||
|
* --showconfig overhaul
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 13 23:22:47 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.10.0:
|
||||||
|
* Please see changelog.rst
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 28 14:59:11 CET 2019 - Matej Cepl <mcepl@suse.com>
|
Thu Mar 28 14:59:11 CET 2019 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-tox
|
Name: python-tox
|
||||||
Version: 3.8.1
|
Version: 3.11.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Virtualenv-based automation of test activities
|
Summary: Virtualenv-based automation of test activities
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -31,6 +31,7 @@ Group: Development/Languages/Python
|
|||||||
URL: https://github.com/tox-dev/tox
|
URL: https://github.com/tox-dev/tox
|
||||||
Source: https://files.pythonhosted.org/packages/source/t/tox/tox-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/t/tox/tox-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module filelock}
|
BuildRequires: %{python_module filelock}
|
||||||
|
BuildRequires: %{python_module flaky}
|
||||||
BuildRequires: %{python_module freezegun}
|
BuildRequires: %{python_module freezegun}
|
||||||
BuildRequires: %{python_module pathlib2}
|
BuildRequires: %{python_module pathlib2}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
@ -45,7 +46,7 @@ BuildRequires: %{python_module setuptools >= 41.0.1}
|
|||||||
BuildRequires: %{python_module setuptools_scm >= 2.0.0}
|
BuildRequires: %{python_module setuptools_scm >= 2.0.0}
|
||||||
BuildRequires: %{python_module six >= 1.0.0}
|
BuildRequires: %{python_module six >= 1.0.0}
|
||||||
BuildRequires: %{python_module toml}
|
BuildRequires: %{python_module toml}
|
||||||
BuildRequires: %{python_module virtualenv >= 1.11.2}
|
BuildRequires: %{python_module virtualenv >= 14.0.0}
|
||||||
BuildRequires: %{python_module wheel >= 0.29.0}
|
BuildRequires: %{python_module wheel >= 0.29.0}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@ -57,7 +58,7 @@ Requires: python-py >= 1.4.17
|
|||||||
Requires: python-setuptools >= 30.0.0
|
Requires: python-setuptools >= 30.0.0
|
||||||
Requires: python-six >= 1.0.0
|
Requires: python-six >= 1.0.0
|
||||||
Requires: python-toml >= 0.9.4
|
Requires: python-toml >= 0.9.4
|
||||||
Requires: python-virtualenv >= 1.11.2
|
Requires: python-virtualenv >= 14.0.0
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -121,11 +122,10 @@ done
|
|||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
export LANG=en_US.UTF-8
|
|
||||||
export PYTHONDONTWRITEBYTECODE=1
|
export PYTHONDONTWRITEBYTECODE=1
|
||||||
export PATH=%{buildroot}%{_bindir}:$PATH
|
export PATH=%{buildroot}%{_bindir}:$PATH
|
||||||
# Ignores for gh#tox-dev/tox#1293
|
# Ignores for gh#tox-dev/tox#1293
|
||||||
%pytest -k 'not (network or parallel or test_provision_missing or test_provision_interrupt_child or test_workdir_gets_resolved)'
|
%pytest -k 'not (network or parallel or test_provision_missing or test_provision_interrupt_child or test_workdir_gets_resolved or test_provision_cli_args_ignore)'
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%python_install_alternative tox tox-quickstart
|
%python_install_alternative tox tox-quickstart
|
||||||
@ -138,7 +138,7 @@ export PATH=%{buildroot}%{_bindir}:$PATH
|
|||||||
%doc README.md docs/changelog.rst CONTRIBUTORS CONTRIBUTING.rst
|
%doc README.md docs/changelog.rst CONTRIBUTORS CONTRIBUTING.rst
|
||||||
%python_alternative %{_bindir}/tox
|
%python_alternative %{_bindir}/tox
|
||||||
%python_alternative %{_bindir}/tox-quickstart
|
%python_alternative %{_bindir}/tox-quickstart
|
||||||
%{python_sitelib}/tox-%{version}*.*-info
|
%{python_sitelib}/tox-%{version}*
|
||||||
%{python_sitelib}/tox
|
%{python_sitelib}/tox
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
3
tox-3.11.1.tar.gz
Normal file
3
tox-3.11.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1fa40cf60654c981ae8f0dafc8b87fe4ffd1ec3381d90694b97e1eec02e0b5d9
|
||||||
|
size 284226
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:74716bfc7681a6787d3c8612c5c534f04e4112b34fad8949752359d8b9bed3b6
|
|
||||||
size 280452
|
|
Loading…
Reference in New Issue
Block a user