Hello community,

here is the log from the commit of package python-typepy for openSUSE:Factory 
checked in at 2020-07-08 19:20:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-typepy (Old)
 and      /work/SRC/openSUSE:Factory/.python-typepy.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-typepy"

Wed Jul  8 19:20:14 2020 rev:5 rq:819500 version:1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-typepy/python-typepy.changes      
2020-04-18 00:32:55.942363161 +0200
+++ /work/SRC/openSUSE:Factory/.python-typepy.new.3060/python-typepy.changes    
2020-07-08 19:20:42.324538222 +0200
@@ -1,0 +2,6 @@
+Wed Jul  8 14:39:57 UTC 2020 - Ondřej Súkup <mimi...@gmail.com>
+
+- Update to 1.1.1
+ - no upstream changelog
+
+-------------------------------------------------------------------

Old:
----
  typepy-1.1.0.tar.gz

New:
----
  typepy-1.1.1.tar.gz

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

Other differences:
------------------
++++++ python-typepy.spec ++++++
--- /var/tmp/diff_new_pack.WmK1yY/_old  2020-07-08 19:20:43.244541276 +0200
+++ /var/tmp/diff_new_pack.WmK1yY/_new  2020-07-08 19:20:43.248541289 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:           python-typepy
-Version:        1.1.0
+Version:        1.1.1
 Release:        0
 Summary:        Python library for run time variable type checker 
 License:        MIT

++++++ typepy-1.1.0.tar.gz -> typepy-1.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.1.0/PKG-INFO new/typepy-1.1.1/PKG-INFO
--- old/typepy-1.1.0/PKG-INFO   2020-04-15 18:06:04.803363600 +0200
+++ new/typepy-1.1.1/PKG-INFO   2020-05-04 04:01:17.000172000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: typepy
-Version: 1.1.0
+Version: 1.1.1
 Summary: typepy is a Python library for variable type 
checker/validator/converter at a run time.
 Home-page: https://github.com/thombashi/typepy
 Author: Tsuyoshi Hombashi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.1.0/tox.ini new/typepy-1.1.1/tox.ini
--- old/typepy-1.1.0/tox.ini    2020-04-15 11:43:37.000000000 +0200
+++ new/typepy-1.1.1/tox.ini    2020-04-20 12:28:20.000000000 +0200
@@ -23,7 +23,7 @@
     wheel
 commands =
     python setup.py sdist bdist_wheel
-    twine check dist/*
+    twine check dist/*.whl dist/*.tar.gz
     python setup.py clean --all
 
 [testenv:clean]
@@ -65,7 +65,7 @@
     pylama
 commands =
     python setup.py check
-    codespell typepy docs test -q2 --check-filenames
+    codespell typepy docs/pages test -q2 --check-filenames
     pylama
 
 [testenv:readme]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.1.0/typepy/__version__.py 
new/typepy-1.1.1/typepy/__version__.py
--- old/typepy-1.1.0/typepy/__version__.py      2020-04-15 18:05:17.000000000 
+0200
+++ new/typepy-1.1.1/typepy/__version__.py      2020-05-04 04:00:25.000000000 
+0200
@@ -1,6 +1,6 @@
 __author__ = "Tsuyoshi Hombashi"
 __copyright__ = "Copyright 2017, {}".format(__author__)
 __license__ = "MIT License"
-__version__ = "1.1.0"
+__version__ = "1.1.1"
 __maintainer__ = __author__
 __email__ = "tsuyoshi.homba...@gmail.com"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.1.0/typepy/converter/_realnumber.py 
new/typepy-1.1.1/typepy/converter/_realnumber.py
--- old/typepy-1.1.0/typepy/converter/_realnumber.py    2020-03-28 
16:24:58.000000000 +0100
+++ new/typepy-1.1.1/typepy/converter/_realnumber.py    2020-05-04 
03:40:59.000000000 +0200
@@ -14,7 +14,9 @@
     def __init__(self, value, params):
         super().__init__(value, params)
 
-        self.float_class = DefaultValue.FLOAT_TYPE
+        self.float_class = self._params.get("float_type")
+        if self.float_class is None:
+            self.float_class = DefaultValue.FLOAT_TYPE
 
     def force_convert(self):
         if isinstance(self._value, self.float_class):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.1.0/typepy/type/_realnumber.py 
new/typepy-1.1.1/typepy/type/_realnumber.py
--- old/typepy-1.1.0/typepy/type/_realnumber.py 2020-03-29 14:45:44.000000000 
+0200
+++ new/typepy-1.1.1/typepy/type/_realnumber.py 2020-05-04 03:46:19.000000000 
+0200
@@ -4,7 +4,6 @@
 
 from typing import Any
 
-from .._const import DefaultValue
 from .._typecode import Typecode
 from ._base import AbstractType
 
@@ -35,6 +34,5 @@
         from ..converter._realnumber import FloatConverter
 
         converter = FloatConverter(self._data, self._params)
-        converter.float_class = self._params.get("float_type", 
DefaultValue.FLOAT_TYPE)
 
         return converter
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.1.0/typepy.egg-info/PKG-INFO 
new/typepy-1.1.1/typepy.egg-info/PKG-INFO
--- old/typepy-1.1.0/typepy.egg-info/PKG-INFO   2020-04-15 18:06:04.000000000 
+0200
+++ new/typepy-1.1.1/typepy.egg-info/PKG-INFO   2020-05-04 04:01:16.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: typepy
-Version: 1.1.0
+Version: 1.1.1
 Summary: typepy is a Python library for variable type 
checker/validator/converter at a run time.
 Home-page: https://github.com/thombashi/typepy
 Author: Tsuyoshi Hombashi


Reply via email to