Hello community,
here is the log from the commit of package python3-pytest-runner for
openSUSE:Factory checked in at 2016-04-05 10:44:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-pytest-runner (Old)
and /work/SRC/openSUSE:Factory/.python3-pytest-runner.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python3-pytest-runner"
Changes:
--------
---
/work/SRC/openSUSE:Factory/python3-pytest-runner/python3-pytest-runner.changes
2016-02-16 09:19:18.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.python3-pytest-runner.new/python3-pytest-runner.changes
2016-04-05 10:44:33.000000000 +0200
@@ -1,0 +2,5 @@
+Sun Apr 3 19:22:30 UTC 2016 - [email protected]
+
+- update to version 2.7.1:
+ (no changelog available)
+-------------------------------------------------------------------
Old:
----
pytest-runner-2.7.tar.gz
New:
----
pytest-runner-2.7.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python3-pytest-runner.spec ++++++
--- /var/tmp/diff_new_pack.Iuvedl/_old 2016-04-05 10:44:34.000000000 +0200
+++ /var/tmp/diff_new_pack.Iuvedl/_new 2016-04-05 10:44:34.000000000 +0200
@@ -17,7 +17,7 @@
Name: python3-pytest-runner
-Version: 2.7
+Version: 2.7.1
Release: 0
Summary: Simple powerful testing with Python
License: MIT
++++++ pytest-runner-2.7.tar.gz -> pytest-runner-2.7.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/.hgtags
new/pytest-runner-2.7.1/.hgtags
--- old/pytest-runner-2.7/.hgtags 2016-02-13 18:57:15.000000000 +0100
+++ new/pytest-runner-2.7.1/.hgtags 2016-04-03 04:45:21.000000000 +0200
@@ -21,3 +21,4 @@
0cc61470c2a2fd5b0ed2c4c4ac7480bf68526f6e 2.6.2
daf0974a5e9348b8c8e20e9ee227702edc5b6e75 2.6.3
a1fa887922d237f915ba51f9022f4da983ceb32e 2.7
+21cfa346c8960f29f1a364d97ecbb9d1a7f6a3c0 2.7.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/.travis.yml
new/pytest-runner-2.7.1/.travis.yml
--- old/pytest-runner-2.7/.travis.yml 2016-02-13 18:49:06.000000000 +0100
+++ new/pytest-runner-2.7.1/.travis.yml 2016-04-03 04:41:31.000000000 +0200
@@ -1,8 +1,17 @@
sudo: false
language: python
python:
- - 2.7
- - 3.5
+- 2.7
+- 3.5
script:
- - pip install -U pytest
- - python setup.py test
+- pip install -U pytest
+- python setup.py test
+deploy:
+ provider: pypi
+ on:
+ tags: true
+ all_branches: true
+ user: jaraco
+ # supply password with `travis encrypt --add deploy.password`
+ distributions: release
+ python: 3.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/PKG-INFO
new/pytest-runner-2.7.1/PKG-INFO
--- old/pytest-runner-2.7/PKG-INFO 2016-02-13 18:57:24.000000000 +0100
+++ new/pytest-runner-2.7.1/PKG-INFO 2016-04-03 04:45:33.000000000 +0200
@@ -1,8 +1,8 @@
Metadata-Version: 1.1
Name: pytest-runner
-Version: 2.7
-Summary: Invoke py.test as distutils command with dependency resolution.
-Home-page: https://bitbucket.org/pytest-dev/pytest-runner
+Version: 2.7.1
+Summary: Invoke py.test as distutils command with dependency resolution
+Home-page: https://github.com/pytest-dev/pytest-runner
Author: Jason R. Coombs
Author-email: [email protected]
License: UNKNOWN
@@ -50,7 +50,7 @@
required by the session before invoking pytest.
See the `jaraco.collections
- <https://bitbucket.org/jaraco/jaraco.collections/>`_ project
+ <https://github.com/jaraco/jaraco.collections>`_ project
for real-world usage.
Standalone Example
@@ -61,9 +61,13 @@
also be used to create standalone tests. Consider `this example
failure <https://gist.github.com/jaraco/d979a558bc0bf2194c23>`_,
reported in `jsonpickle #117
- <https://github.com/jsonpickle/jsonpickle/issues/117>`_.
+ <https://github.com/jsonpickle/jsonpickle/issues/117>`_
+ or `this MongoDB test
+ <https://gist.github.com/jaraco/0b9e482f5c0a1300dc9a>`_
+ demonstrating a technique that works even when dependencies
+ are required in the test.
- That single file may be cloned or downloaded and simply run on
+ Either example file may be cloned or downloaded and simply run on
any system with Python and Setuptools. It will download the
specified dependencies and run the tests. Afterward, the the
cloned directory can be removed and with it all trace of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/README.rst
new/pytest-runner-2.7.1/README.rst
--- old/pytest-runner-2.7/README.rst 2016-02-13 18:49:26.000000000 +0100
+++ new/pytest-runner-2.7.1/README.rst 2016-04-03 04:41:29.000000000 +0200
@@ -42,7 +42,7 @@
required by the session before invoking pytest.
See the `jaraco.collections
-<https://bitbucket.org/jaraco/jaraco.collections/>`_ project
+<https://github.com/jaraco/jaraco.collections>`_ project
for real-world usage.
Standalone Example
@@ -53,9 +53,13 @@
also be used to create standalone tests. Consider `this example
failure <https://gist.github.com/jaraco/d979a558bc0bf2194c23>`_,
reported in `jsonpickle #117
-<https://github.com/jsonpickle/jsonpickle/issues/117>`_.
+<https://github.com/jsonpickle/jsonpickle/issues/117>`_
+or `this MongoDB test
+<https://gist.github.com/jaraco/0b9e482f5c0a1300dc9a>`_
+demonstrating a technique that works even when dependencies
+are required in the test.
-That single file may be cloned or downloaded and simply run on
+Either example file may be cloned or downloaded and simply run on
any system with Python and Setuptools. It will download the
specified dependencies and run the tests. Afterward, the the
cloned directory can be removed and with it all trace of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/docs/conf.py
new/pytest-runner-2.7.1/docs/conf.py
--- old/pytest-runner-2.7/docs/conf.py 2016-02-13 18:50:03.000000000 +0100
+++ new/pytest-runner-2.7.1/docs/conf.py 2016-04-03 04:41:31.000000000
+0200
@@ -5,6 +5,7 @@
extensions = [
'sphinx.ext.autodoc',
+ 'rst.linker',
]
# General information about the project.
@@ -17,3 +18,22 @@
release = version
master_doc = 'index'
+
+link_files = {
+ 'CHANGES.rst': dict(
+ using=dict(
+ GH='https://github.com',
+ project=project,
+ ),
+ replace=[
+ dict(
+ pattern=r"(Issue )?#(?P<issue>\d+)",
+ url='{GH}/jaraco/{project}/issues/{issue}',
+ ),
+ dict(
+
pattern=r"^(?m)((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n",
+ with_scm="{text}\n{rev[timestamp]:%d %b %Y}\n",
+ ),
+ ],
+ ),
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/docs/history.rst
new/pytest-runner-2.7.1/docs/history.rst
--- old/pytest-runner-2.7/docs/history.rst 2016-02-13 18:50:11.000000000
+0100
+++ new/pytest-runner-2.7.1/docs/history.rst 2016-04-03 04:41:31.000000000
+0200
@@ -5,4 +5,4 @@
History
*******
-.. include:: ../CHANGES.rst
+.. include:: ../CHANGES (links).rst
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/docs/index.rst
new/pytest-runner-2.7.1/docs/index.rst
--- old/pytest-runner-2.7/docs/index.rst 2016-02-13 18:50:32.000000000
+0100
+++ new/pytest-runner-2.7.1/docs/index.rst 2016-04-03 04:41:29.000000000
+0200
@@ -6,7 +6,7 @@
history
-.. include:: ../README.txt
+.. include:: ../README.rst
Indices and tables
==================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/pytest_runner.egg-info/PKG-INFO
new/pytest-runner-2.7.1/pytest_runner.egg-info/PKG-INFO
--- old/pytest-runner-2.7/pytest_runner.egg-info/PKG-INFO 2016-02-13
18:57:24.000000000 +0100
+++ new/pytest-runner-2.7.1/pytest_runner.egg-info/PKG-INFO 2016-04-03
04:45:33.000000000 +0200
@@ -1,8 +1,8 @@
Metadata-Version: 1.1
Name: pytest-runner
-Version: 2.7
-Summary: Invoke py.test as distutils command with dependency resolution.
-Home-page: https://bitbucket.org/pytest-dev/pytest-runner
+Version: 2.7.1
+Summary: Invoke py.test as distutils command with dependency resolution
+Home-page: https://github.com/pytest-dev/pytest-runner
Author: Jason R. Coombs
Author-email: [email protected]
License: UNKNOWN
@@ -50,7 +50,7 @@
required by the session before invoking pytest.
See the `jaraco.collections
- <https://bitbucket.org/jaraco/jaraco.collections/>`_ project
+ <https://github.com/jaraco/jaraco.collections>`_ project
for real-world usage.
Standalone Example
@@ -61,9 +61,13 @@
also be used to create standalone tests. Consider `this example
failure <https://gist.github.com/jaraco/d979a558bc0bf2194c23>`_,
reported in `jsonpickle #117
- <https://github.com/jsonpickle/jsonpickle/issues/117>`_.
+ <https://github.com/jsonpickle/jsonpickle/issues/117>`_
+ or `this MongoDB test
+ <https://gist.github.com/jaraco/0b9e482f5c0a1300dc9a>`_
+ demonstrating a technique that works even when dependencies
+ are required in the test.
- That single file may be cloned or downloaded and simply run on
+ Either example file may be cloned or downloaded and simply run on
any system with Python and Setuptools. It will download the
specified dependencies and run the tests. Afterward, the the
cloned directory can be removed and with it all trace of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/pytest_runner.egg-info/SOURCES.txt
new/pytest-runner-2.7.1/pytest_runner.egg-info/SOURCES.txt
--- old/pytest-runner-2.7/pytest_runner.egg-info/SOURCES.txt 2016-02-13
18:57:24.000000000 +0100
+++ new/pytest-runner-2.7.1/pytest_runner.egg-info/SOURCES.txt 2016-04-03
04:45:33.000000000 +0200
@@ -15,4 +15,5 @@
pytest_runner.egg-info/SOURCES.txt
pytest_runner.egg-info/dependency_links.txt
pytest_runner.egg-info/entry_points.txt
+pytest_runner.egg-info/namespace_packages.txt
pytest_runner.egg-info/top_level.txt
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/pytest-runner-2.7/pytest_runner.egg-info/namespace_packages.txt
new/pytest-runner-2.7.1/pytest_runner.egg-info/namespace_packages.txt
--- old/pytest-runner-2.7/pytest_runner.egg-info/namespace_packages.txt
1970-01-01 01:00:00.000000000 +0100
+++ new/pytest-runner-2.7.1/pytest_runner.egg-info/namespace_packages.txt
2016-04-03 04:45:33.000000000 +0200
@@ -0,0 +1 @@
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/setup.cfg
new/pytest-runner-2.7.1/setup.cfg
--- old/pytest-runner-2.7/setup.cfg 2016-02-13 18:57:24.000000000 +0100
+++ new/pytest-runner-2.7.1/setup.cfg 2016-04-03 04:45:33.000000000 +0200
@@ -1,12 +1,12 @@
[aliases]
-release = sdist bdist_wheel build_sphinx upload upload_docs
+release = clean --all sdist bdist_wheel build_sphinx upload upload_docs
test = pytest
[wheel]
universal = 1
[egg_info]
-tag_date = 0
tag_svn_revision = 0
tag_build =
+tag_date = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/pytest-runner-2.7/setup.py
new/pytest-runner-2.7.1/setup.py
--- old/pytest-runner-2.7/setup.py 2016-02-13 18:56:03.000000000 +0100
+++ new/pytest-runner-2.7.1/setup.py 2016-04-03 04:43:36.000000000 +0200
@@ -13,19 +13,22 @@
needs_pytest = set(['pytest', 'test']).intersection(sys.argv)
pytest_runner = ['pytest_runner'] if needs_pytest else []
needs_sphinx = set(['release', 'build_sphinx',
'upload_docs']).intersection(sys.argv)
-sphinx = ['sphinx'] if needs_sphinx else []
+sphinx = ['sphinx', 'rst.linker'] if needs_sphinx else []
needs_wheel = set(['release', 'bdist_wheel']).intersection(sys.argv)
wheel = ['wheel'] if needs_wheel else []
+name = 'pytest-runner'
+description = 'Invoke py.test as distutils command with dependency resolution'
+
setup_params = dict(
- name='pytest-runner',
+ name=name,
use_scm_version=True,
author="Jason R. Coombs",
author_email="[email protected]",
- description="Invoke py.test as distutils command with dependency "
- "resolution.",
+ description=description or name,
long_description=long_description,
- url="https://bitbucket.org/pytest-dev/pytest-runner",
+ url="https://github.com/pytest-dev/" + name,
+ namespace_packages=name.split('.')[:-1],
py_modules=['ptr'],
install_requires=[
],