Hello community,
here is the log from the commit of package python-mimesis for
openSUSE:Leap:15.2 checked in at 2020-02-22 17:50:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/python-mimesis (Old)
and /work/SRC/openSUSE:Leap:15.2/.python-mimesis.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-mimesis"
Sat Feb 22 17:50:06 2020 rev:1 rq:775744 version:3.3.0
Changes:
--------
New Changes file:
--- /dev/null 2019-12-19 10:12:34.003146842 +0100
+++
/work/SRC/openSUSE:Leap:15.2/.python-mimesis.new.26092/python-mimesis.changes
2020-02-22 17:50:07.773491046 +0100
@@ -0,0 +1,38 @@
+-------------------------------------------------------------------
+Thu Jan 9 09:04:34 UTC 2020 - Tomáš Chvátal <[email protected]>
+
+- Skip test test_cpf_with_666_prefix as it fails with new
+ mocker behaviour
+
+-------------------------------------------------------------------
+Wed Sep 11 11:36:10 UTC 2019 - Tomáš Chvátal <[email protected]>
+
+- Update to 3.3.0:
+ * country() from the Address() provider now by default returns the country
name of the current locale.
+ * Separated Europe and Asia continents in Italian locale.
+ * Removed duplicated names in the countries of et locale.
+
+-------------------------------------------------------------------
+Tue Jun 18 11:44:53 UTC 2019 - [email protected]
+
+- version update to 3.2.0
+ **Added**:
+ - Added built-in provider DenmarkSpecProvider
+ - Added meta classes for providers for internal usage
+ (see `#621 <https://github.com/lk-geimfari/mimesis/issues/621>`_.)
+ - Added support for custom templates in ``Person().username()``
+ - Added ``ItalianSpecProvider()``
+ **Fixed**:
+ - Support of seed for custom providers
+ - ``currency_iso_code`` from the ``Business()`` provider now by
+ default returns the currency code of the current locale.
+ **Removed**:
+ - Removed ``multiple_choice()`` in the ``random`` module because it
+ was unusued and it could be replaced with ``random.choices``.
+ - Removed legacy method ``child_count()`` from provider ``Person()``
+- run the testsuite
+
+-------------------------------------------------------------------
+Thu May 2 19:01:49 UTC 2019 - Todd R <[email protected]>
+
+- Initial version
New:
----
mimesis-3.3.0.tar.gz
python-mimesis.changes
python-mimesis.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-mimesis.spec ++++++
#
# spec file for package python-mimesis
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-mimesis
Version: 3.3.0
Release: 0
Summary: Fake data generator
License: MIT
Group: Development/Languages/Python
URL: https://github.com/lk-geimfari/mimesis
Source:
https://github.com/lk-geimfari/mimesis/archive/v%{version}.tar.gz#/mimesis-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Recommends: python-pytz
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytz}
# /SECTION
%python_subpackages
%description
Mimesis is a package for Python, which helps generate big volumes of
fake data for a variety of purposes in a variety of languages. The
fake data could be used to populate a testing database, create JSON
and XML files, anonymize data taken from production and etc.
%prep
%setup -q -n mimesis-%{version}
chmod a-x LICENSE README.rst
chmod a-x mimesis/data/*/*.json
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
rm %{buildroot}%{_prefix}/LICENSE
%check
sed -i '/--\(flake8\|isort\)/d' setup.cfg
# some tests require a network connection
# test_cpf_with_666_prefix - fails with new mocker behaviour
%pytest -k 'not (test_download_image or test_stock_image or
test_cpf_with_666_prefix)'
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/mimesis-%{version}-py*.egg-info
%{python_sitelib}/mimesis/
%changelog