commit python-typepy for openSUSE:Factory

2020-07-08 Thread root
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 
+
+- 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.ini2020-04-15 11:43:37.0 +0200
+++ new/typepy-1.1.1/tox.ini2020-04-20 12:28:20.0 +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.0 
+0200
+++ new/typepy-1.1.1/typepy/__version__.py  2020-05-04 04:00:25.0 
+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.py2020-03-28 
16:24:58.0 +0100
+++ new/typepy-1.1.1/typepy/converter/_realnumber.py2020-05-04 
03:40:59.0 +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.0 
+0200
+++ new/typepy-1.1.1/typepy/type/_realnumber.py 2020-05-04 03:46:19.0 
+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 

commit python-typepy for openSUSE:Factory

2020-04-17 Thread root
Hello community,

here is the log from the commit of package python-typepy for openSUSE:Factory 
checked in at 2020-04-18 00:31:35

Comparing /work/SRC/openSUSE:Factory/python-typepy (Old)
 and  /work/SRC/openSUSE:Factory/.python-typepy.new.2738 (New)


Package is "python-typepy"

Sat Apr 18 00:31:35 2020 rev:4 rq:794848 version:1.1.0

Changes:

--- /work/SRC/openSUSE:Factory/python-typepy/python-typepy.changes  
2020-03-30 23:02:46.176154853 +0200
+++ /work/SRC/openSUSE:Factory/.python-typepy.new.2738/python-typepy.changes
2020-04-18 00:32:55.942363161 +0200
@@ -1,0 +2,8 @@
+Fri Apr 17 09:22:56 UTC 2020 - Martin Hauke 
+
+- Update to version 1.1.0
+  * Improve type annotations
+  * Improve dictionary type detection
+  * Rename a type from Binary to Bytes
+
+---

Old:

  typepy-1.0.0.tar.gz

New:

  typepy-1.1.0.tar.gz



Other differences:
--
++ python-typepy.spec ++
--- /var/tmp/diff_new_pack.gAYDA4/_old  2020-04-18 00:32:57.538366466 +0200
+++ /var/tmp/diff_new_pack.gAYDA4/_new  2020-04-18 00:32:57.542366474 +0200
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-typepy
-Version:1.0.0
+Version:1.1.0
 Release:0
 Summary:Python library for run time variable type checker 
 License:MIT
@@ -29,7 +29,7 @@
 BuildRequires:  %{python_module setuptools >= 38.3.0}
 BuildRequires:  python-rpm-macros
 # SECTION test requirements
-BuildRequires:  %{python_module mbstrdecoder >= 0.8.3}
+BuildRequires:  %{python_module mbstrdecoder >= 1.0.0}
 BuildRequires:  %{python_module pytest-runner}
 BuildRequires:  %{python_module python-dateutil >= 2.8.0}
 BuildRequires:  %{python_module pytz >= 2018.9}
@@ -37,7 +37,7 @@
 BuildRequires:  %{python_module termcolor}
 # /SECTION
 BuildRequires:  fdupes
-Requires:   python-mbstrdecoder >= 0.8.3
+Requires:   python-mbstrdecoder >= 1.0.0
 Requires:   python-setuptools >= 38.3.0
 Requires:   python-six >= 1.10.0
 Suggests:   python-python-dateutil >= 2.8.0

++ typepy-1.0.0.tar.gz -> typepy-1.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.0.0/PKG-INFO new/typepy-1.1.0/PKG-INFO
--- old/typepy-1.0.0/PKG-INFO   2020-03-29 16:00:25.129839000 +0200
+++ new/typepy-1.1.0/PKG-INFO   2020-04-15 18:06:04.803363600 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: typepy
-Version: 1.0.0
+Version: 1.1.0
 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
@@ -207,7 +207,7 @@
 
 Keywords: library,type-checking,type-conversion,validator
 Platform: UNKNOWN
-Classifier: Development Status :: 4 - Beta
+Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: Intended Audience :: Information Technology
 Classifier: License :: OSI Approved :: MIT License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.0.0/requirements/requirements.txt 
new/typepy-1.1.0/requirements/requirements.txt
--- old/typepy-1.0.0/requirements/requirements.txt  2020-03-28 
16:07:08.0 +0100
+++ new/typepy-1.1.0/requirements/requirements.txt  2020-04-04 
17:00:25.0 +0200
@@ -1 +1 @@
-mbstrdecoder>=0.8.3,<2
+mbstrdecoder>=1.0.0,<2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.0.0/setup.py new/typepy-1.1.0/setup.py
--- old/typepy-1.0.0/setup.py   2020-03-29 15:51:56.0 +0200
+++ new/typepy-1.1.0/setup.py   2020-03-29 16:10:12.0 +0200
@@ -71,7 +71,7 @@
 setup_requires=SETUPTOOLS_REQUIRES,
 extras_require={"datetime": DATETIME_REQUIRES, "test": tests_requires + 
DATETIME_REQUIRES},
 classifiers=[
-"Development Status :: 4 - Beta",
+"Development Status :: 5 - Production/Stable",
 "Intended Audience :: Developers",
 "Intended Audience :: Information Technology",
 "License :: OSI Approved :: MIT License",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-1.0.0/test/checker/test_checker_binary.py 
new/typepy-1.1.0/test/checker/test_checker_binary.py
--- old/typepy-1.0.0/test/checker/test_checker_binary.py2020-03-28 
16:22:00.0 +0100
+++ new/typepy-1.1.0/test/checker/test_checker_binary.py1970-01-01 
01:00:00.0 +0100
@@ -1,35 +0,0 @@
-"""
-.. codeauthor:: Tsuyoshi Hombashi 
-"""
-
-import itertools
-import sys
-
-import pytest
-

commit python-typepy for openSUSE:Factory

2020-03-30 Thread root
Hello community,

here is the log from the commit of package python-typepy for openSUSE:Factory 
checked in at 2020-03-30 23:02:42

Comparing /work/SRC/openSUSE:Factory/python-typepy (Old)
 and  /work/SRC/openSUSE:Factory/.python-typepy.new.3160 (New)


Package is "python-typepy"

Mon Mar 30 23:02:42 2020 rev:3 rq:789569 version:1.0.0

Changes:

--- /work/SRC/openSUSE:Factory/python-typepy/python-typepy.changes  
2020-03-17 13:11:39.709868834 +0100
+++ /work/SRC/openSUSE:Factory/.python-typepy.new.3160/python-typepy.changes
2020-03-30 23:02:46.176154853 +0200
@@ -1,0 +2,10 @@
+Sun Mar 29 15:18:34 UTC 2020 - Martin Hauke 
+
+- Update to version 1.0.0
+  * Drop Python 2 support
+  * Add support for Python 3.9
+  * Add extract_typepy_from_dtype function
+  * Remove deprecated functions
+  * Modify NullString not to strip white spaces in default
+
+---

Old:

  typepy-0.6.6.tar.gz

New:

  typepy-1.0.0.tar.gz



Other differences:
--
++ python-typepy.spec ++
--- /var/tmp/diff_new_pack.oMzDs4/_old  2020-03-30 23:02:47.144155405 +0200
+++ /var/tmp/diff_new_pack.oMzDs4/_new  2020-03-30 23:02:47.148155407 +0200
@@ -17,8 +17,9 @@
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
+%define skip_python2 1
 Name:   python-typepy
-Version:0.6.6
+Version:1.0.0
 Release:0
 Summary:Python library for run time variable type checker 
 License:MIT
@@ -34,8 +35,6 @@
 BuildRequires:  %{python_module pytz >= 2018.9}
 BuildRequires:  %{python_module six >= 1.10.0}
 BuildRequires:  %{python_module termcolor}
-BuildRequires:  python-enum34
-BuildRequires:  python-ipaddress
 # /SECTION
 BuildRequires:  fdupes
 Requires:   python-mbstrdecoder >= 0.8.3
@@ -45,10 +44,6 @@
 Suggests:   python-pytz >= 2018.9
 Suggests:   python-path.py
 Suggests:   python-termcolor
-%ifpython2
-Requires:   python-enum34
-Requires:   python-ipaddress
-%endif
 BuildArch:  noarch
 
 %python_subpackages

++ typepy-0.6.6.tar.gz -> typepy-1.0.0.tar.gz ++
 2584 lines of diff (skipped)




commit python-typepy for openSUSE:Factory

2020-03-17 Thread root
Hello community,

here is the log from the commit of package python-typepy for openSUSE:Factory 
checked in at 2020-03-17 13:11:35

Comparing /work/SRC/openSUSE:Factory/python-typepy (Old)
 and  /work/SRC/openSUSE:Factory/.python-typepy.new.3160 (New)


Package is "python-typepy"

Tue Mar 17 13:11:35 2020 rev:2 rq:785840 version:0.6.6

Changes:

--- /work/SRC/openSUSE:Factory/python-typepy/python-typepy.changes  
2020-02-09 20:47:37.506847875 +0100
+++ /work/SRC/openSUSE:Factory/.python-typepy.new.3160/python-typepy.changes
2020-03-17 13:11:39.709868834 +0100
@@ -1,0 +2,6 @@
+Tue Mar 17 08:22:09 UTC 2020 - pgaj...@suse.com
+
+- version update to 0.6.6
+  * no upstream changelog found
+
+---

Old:

  typepy-0.6.4.tar.gz

New:

  typepy-0.6.6.tar.gz



Other differences:
--
++ python-typepy.spec ++
--- /var/tmp/diff_new_pack.V6jIE5/_old  2020-03-17 13:11:40.261869257 +0100
+++ /var/tmp/diff_new_pack.V6jIE5/_new  2020-03-17 13:11:40.265869260 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-typepy
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,20 +12,21 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-typepy
-Version:0.6.4
+Version:0.6.6
 Release:0
-License:MIT
 Summary:Python library for run time variable type checker 
-Url:https://github.com/thombashi/typepy
+License:MIT
 Group:  Development/Languages/Python
+URL:https://github.com/thombashi/typepy
 Source: 
https://files.pythonhosted.org/packages/source/t/typepy/typepy-%{version}.tar.gz
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module setuptools >= 38.3.0}
+BuildRequires:  python-rpm-macros
 # SECTION test requirements
 BuildRequires:  %{python_module mbstrdecoder >= 0.8.3}
 BuildRequires:  %{python_module pytest-runner}
@@ -45,8 +46,8 @@
 Suggests:   python-path.py
 Suggests:   python-termcolor
 %ifpython2
-Requires:   python-ipaddress
 Requires:   python-enum34
+Requires:   python-ipaddress
 %endif
 BuildArch:  noarch
 

++ typepy-0.6.4.tar.gz -> typepy-0.6.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-0.6.4/PKG-INFO new/typepy-0.6.6/PKG-INFO
--- old/typepy-0.6.4/PKG-INFO   2020-01-05 01:48:55.675588800 +0100
+++ new/typepy-0.6.6/PKG-INFO   2020-02-29 10:49:48.733635400 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: typepy
-Version: 0.6.4
+Version: 0.6.6
 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
@@ -199,7 +199,6 @@
 Test dependencies
 --
 - `pytest `__
-- `pytest-runner `__
 - `tox `__
 
 Documentation
@@ -226,6 +225,6 @@
 Classifier: Topic :: Software Development :: Libraries
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
+Description-Content-Type: text/x-rst
 Provides-Extra: datetime
-Provides-Extra: dev
 Provides-Extra: test
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-0.6.4/README.rst new/typepy-0.6.6/README.rst
--- old/typepy-0.6.4/README.rst 2020-01-05 01:45:31.0 +0100
+++ new/typepy-0.6.6/README.rst 2020-02-29 10:37:32.0 +0100
@@ -188,7 +188,6 @@
 Test dependencies
 --
 - `pytest `__
-- `pytest-runner `__
 - `tox `__
 
 Documentation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/typepy-0.6.4/pyproject.toml 
new/typepy-0.6.6/pyproject.toml
--- old/typepy-0.6.4/pyproject.toml 2020-01-04 14:19:04.0 +0100
+++ new/typepy-0.6.6/pyproject.toml 2020-01-12 06:10:00.0 +0100
@@ -7,6 +7,7 @@
 |