14
0

Accepting request 294639 from home:tbechtold:branches:devel:languages:python

New upstream release

OBS-URL: https://build.opensuse.org/request/show/294639
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools?expand=0&rev=72
This commit is contained in:
Denisart Benjamin
2015-04-06 23:29:51 +00:00
committed by Git OBS Bridge
parent b149d74f8e
commit 7b0a3c58a6
7 changed files with 275 additions and 10 deletions

20
fix-type-error.patch Normal file
View File

@@ -0,0 +1,20 @@
changeset: 3811:6b535d850b40
branch: fix-type-error-skip-reason
tag: tip
user: Thomas Bechtold <tbechtold@suse.com>
date: Sun Apr 05 08:39:18 2015 +0200
summary: Fix TypeError for pytest.skip()
diff -r ef4e6f655dc0 -r 6b535d850b40 setuptools/tests/test_integration.py
--- a/setuptools/tests/test_integration.py Sun Apr 05 06:35:14 2015 +0000
+++ b/setuptools/tests/test_integration.py Sun Apr 05 08:39:18 2015 +0200
@@ -28,7 +28,7 @@
try:
urlopen('https://pypi.python.org/pypi')
except Exception as exc:
- pytest.skip(reason=str(exc))
+ pytest.skip(str(exc))
@pytest.fixture