Hello community,

here is the log from the commit of package python-roman for openSUSE:Factory 
checked in at 2018-12-24 11:47:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-roman (Old)
 and      /work/SRC/openSUSE:Factory/.python-roman.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-roman"

Mon Dec 24 11:47:45 2018 rev:10 rq:660697 version:3.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-roman/python-roman.changes        
2018-06-15 14:37:37.351332519 +0200
+++ /work/SRC/openSUSE:Factory/.python-roman.new.28833/python-roman.changes     
2018-12-24 11:47:46.393113744 +0100
@@ -1,0 +2,6 @@
+Sat Dec 22 05:20:48 UTC 2018 - Todd R <[email protected]>
+
+- Update to 3.1
+  * Added support for Python 3.7.
+
+-------------------------------------------------------------------

Old:
----
  roman-3.0.tar.gz

New:
----
  roman-3.1.tar.gz

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

Other differences:
------------------
++++++ python-roman.spec ++++++
--- /var/tmp/diff_new_pack.wkiidn/_old  2018-12-24 11:47:46.973113236 +0100
+++ /var/tmp/diff_new_pack.wkiidn/_new  2018-12-24 11:47:46.977113232 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-roman
-Version:        3.0
+Version:        3.1
 Release:        0
 Summary:        Integer to Roman numerals converter
 License:        Python-2.0

++++++ roman-3.0.tar.gz -> roman-3.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/roman-3.0/.travis.yml new/roman-3.1/.travis.yml
--- old/roman-3.0/.travis.yml   2018-05-28 09:26:07.000000000 +0200
+++ new/roman-3.1/.travis.yml   2018-10-24 08:23:59.000000000 +0200
@@ -5,6 +5,11 @@
     - 3.6
     - pypy
     - pypy3
+matrix:
+    include:
+        - python: "3.7"
+          dist: xenial
+          sudo: true
 install:
     - pip install .
 script:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/roman-3.0/CHANGES.txt new/roman-3.1/CHANGES.txt
--- old/roman-3.0/CHANGES.txt   2018-05-28 09:26:07.000000000 +0200
+++ new/roman-3.1/CHANGES.txt   2018-10-24 08:23:59.000000000 +0200
@@ -2,6 +2,12 @@
 CHANGES
 =======
 
+3.1 (2018-10-24)
+----------------
+
+- Added support for Python 3.7.
+
+
 3.0 (2018-05-28)
 ----------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/roman-3.0/PKG-INFO new/roman-3.1/PKG-INFO
--- old/roman-3.0/PKG-INFO      2018-05-28 09:26:07.000000000 +0200
+++ new/roman-3.1/PKG-INFO      2018-10-24 08:23:59.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: roman
-Version: 3.0
+Version: 3.1
 Summary: Integer to Roman numerals converter
 Home-page: https://github.com/zopefoundation/roman
 Author: Mark Pilgrim
@@ -10,6 +10,12 @@
         CHANGES
         =======
         
+        3.1 (2018-10-24)
+        ----------------
+        
+        - Added support for Python 3.7.
+        
+        
         3.0 (2018-05-28)
         ----------------
         
@@ -41,6 +47,7 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: License :: OSI Approved :: Python Software Foundation License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/roman-3.0/setup.py new/roman-3.1/setup.py
--- old/roman-3.0/setup.py      2018-05-28 09:26:07.000000000 +0200
+++ new/roman-3.1/setup.py      2018-10-24 08:23:59.000000000 +0200
@@ -2,7 +2,7 @@
 
 setup(
     name='roman',
-    version='3.0',
+    version='3.1',
     author="Mark Pilgrim",
     author_email="[email protected]",
     description="Integer to Roman numerals converter",
@@ -18,6 +18,7 @@
         'Programming Language :: Python :: 3',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: PyPy',
         'License :: OSI Approved :: Python Software Foundation License',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/roman-3.0/src/roman.egg-info/PKG-INFO 
new/roman-3.1/src/roman.egg-info/PKG-INFO
--- old/roman-3.0/src/roman.egg-info/PKG-INFO   2018-05-28 09:26:07.000000000 
+0200
+++ new/roman-3.1/src/roman.egg-info/PKG-INFO   2018-10-24 08:23:59.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: roman
-Version: 3.0
+Version: 3.1
 Summary: Integer to Roman numerals converter
 Home-page: https://github.com/zopefoundation/roman
 Author: Mark Pilgrim
@@ -10,6 +10,12 @@
         CHANGES
         =======
         
+        3.1 (2018-10-24)
+        ----------------
+        
+        - Added support for Python 3.7.
+        
+        
         3.0 (2018-05-28)
         ----------------
         
@@ -41,6 +47,7 @@
 Classifier: Programming Language :: Python :: 3
 Classifier: Programming Language :: Python :: 3.5
 Classifier: Programming Language :: Python :: 3.6
+Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: License :: OSI Approved :: Python Software Foundation License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/roman-3.0/tox.ini new/roman-3.1/tox.ini
--- old/roman-3.0/tox.ini       2018-05-28 09:26:07.000000000 +0200
+++ new/roman-3.1/tox.ini       2018-10-24 08:23:59.000000000 +0200
@@ -1,6 +1,6 @@
 [tox]
 envlist =
-    py27,py35,py36,pypy,pypy3
+    py27,py35,py36,py37,pypy,pypy3
 
 [testenv]
 commands =


Reply via email to