Hello community,

here is the log from the commit of package python-node-semver for 
openSUSE:Factory checked in at 2019-08-13 20:45:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-node-semver (Old)
 and      /work/SRC/openSUSE:Factory/.python-node-semver.new.9556 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-node-semver"

Tue Aug 13 20:45:12 2019 rev:5 rq:723101 version:0.7.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-node-semver/python-node-semver.changes    
2019-01-11 14:06:36.955732018 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-node-semver.new.9556/python-node-semver.changes
  2019-08-13 20:45:12.455046147 +0200
@@ -1,0 +2,6 @@
+Tue Aug 13 14:41:23 UTC 2019 - Martin Pluskal <[email protected]>
+
+- Update to version 0.7.0:
+  * Include tests in source distributions
+
+-------------------------------------------------------------------

Old:
----
  python-node-semver-0.6.1.tar.gz

New:
----
  python-node-semver-0.7.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-node-semver.spec ++++++
--- /var/tmp/diff_new_pack.6OKAYw/_old  2019-08-13 20:45:13.019045983 +0200
+++ /var/tmp/diff_new_pack.6OKAYw/_new  2019-08-13 20:45:13.023045982 +0200
@@ -19,7 +19,7 @@
 %define skip_python2 1
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-node-semver
-Version:        0.6.1
+Version:        0.7.0
 Release:        0
 Summary:        Port of node-semver
 License:        MIT

++++++ python-node-semver-0.6.1.tar.gz -> python-node-semver-0.7.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-semver-0.6.1/.gitignore 
new/python-semver-0.7.0/.gitignore
--- old/python-semver-0.6.1/.gitignore  2018-11-24 12:55:18.000000000 +0100
+++ new/python-semver-0.7.0/.gitignore  2019-08-12 14:02:25.000000000 +0200
@@ -52,3 +52,5 @@
 # Sphinx documentation
 docs/_build/
 
+# misc
+node_modules
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-semver-0.6.1/CHANGES.txt 
new/python-semver-0.7.0/CHANGES.txt
--- old/python-semver-0.6.1/CHANGES.txt 2018-11-24 12:55:18.000000000 +0100
+++ new/python-semver-0.7.0/CHANGES.txt 2019-08-12 14:02:25.000000000 +0200
@@ -1,3 +1,7 @@
+0.7.0
+
+Include tests in source distributions (#31)
+
 0.6.0
 
 - more strict error handling (InvalidTypeIncluded is added)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-semver-0.6.1/MANIFEST.in 
new/python-semver-0.7.0/MANIFEST.in
--- old/python-semver-0.6.1/MANIFEST.in 1970-01-01 01:00:00.000000000 +0100
+++ new/python-semver-0.7.0/MANIFEST.in 2019-08-12 14:02:25.000000000 +0200
@@ -0,0 +1,4 @@
+graft examples
+graft semver/tests
+global-exclude __pycache__
+global-exclude *.py[co]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-semver-0.6.1/setup.py 
new/python-semver-0.7.0/setup.py
--- old/python-semver-0.6.1/setup.py    2018-11-24 12:55:18.000000000 +0100
+++ new/python-semver-0.7.0/setup.py    2019-08-12 14:02:25.000000000 +0200
@@ -4,14 +4,15 @@
 import sys
 
 from setuptools import setup, find_packages
+
 here = os.path.abspath(os.path.dirname(__file__))
 try:
-    with open(os.path.join(here, 'README.rst')) as f:
+    with open(os.path.join(here, "README.rst")) as f:
         README = f.read()
-    with open(os.path.join(here, 'CHANGES.txt')) as f:
+    with open(os.path.join(here, "CHANGES.txt")) as f:
         CHANGES = f.read()
 except IOError:
-    README = CHANGES = ''
+    README = CHANGES = ""
 
 install_requires = []
 
@@ -31,20 +32,21 @@
 
     def run_tests(self):
         import pytest
+
         pytest.main(self.test_args)
 
 
 setup(
-    name='node-semver',
-    version='0.6.1',
-    description='port of node-semver',
-    long_description=README + '\n\n' + CHANGES,
+    name="node-semver",
+    version="0.7.0",
+    description="port of node-semver",
+    long_description=README + "\n\n" + CHANGES,
     classifiers=[
         "Programming Language :: Python",
-        'Programming Language :: Python :: 3',
+        "Programming Language :: Python :: 3",
         "Programming Language :: Python :: Implementation :: CPython",
     ],
-    keywords='version semver',
+    keywords="version semver",
     author="podhmo",
     author_email="[email protected]",
     url="https://github.com/podhmo/python-semver";,
@@ -52,12 +54,9 @@
     include_package_data=True,
     zip_safe=False,
     install_requires=install_requires,
-    extras_require={
-        'testing': testing_extras,
-        'docs': docs_extras,
-    },
+    extras_require={"testing": testing_extras, "docs": docs_extras},
     tests_require=tests_require,
-    cmdclass={'test': PyTest},
+    cmdclass={"test": PyTest},
     entry_points="""      """,
     license="mit",
 )


Reply via email to