From 6c70d7ac8ce1d40d0e31cee49b07e78f7de87444d72871f4b6d0b7644375b2e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Thu, 12 Mar 2020 13:48:34 +0000 Subject: [PATCH] Accepting request 784287 from home:mcalabkova:branches:devel:languages:python - update to 3.13.1 * This will be a notable release as it adds support for CockroachDB, a distributed, horizontally-scalable SQL database. * Allow FOR UPDATE clause to specify one or more tables (FOR UPDATE OF...). * Support for Postgres LATERAL join. * Fix non-deterministic join ordering issue when using the filter() API across several tables * Bulk insert (insert_many() and insert_from()) will now return the row count instead of the last insert ID. * Migration extension now supports altering a column's data-type, via the new alter_column_type() method. * Added BloomFilter.from_buffer() method for populating a bloom-filter from the output of a previous call to the to_buffer() method. OBS-URL: https://build.opensuse.org/request/show/784287 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-peewee?expand=0&rev=26 --- 3.11.2.tar.gz | 3 --- 3.13.1.tar.gz | 3 +++ python-peewee.changes | 17 +++++++++++++++++ python-peewee.spec | 5 +++-- 4 files changed, 23 insertions(+), 5 deletions(-) delete mode 100644 3.11.2.tar.gz create mode 100644 3.13.1.tar.gz diff --git a/3.11.2.tar.gz b/3.11.2.tar.gz deleted file mode 100644 index 058d510..0000000 --- a/3.11.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:81e4297ab2482f356a21c5e4bc7a2cc8684f43cd9731b468f386a48d653a043e -size 847850 diff --git a/3.13.1.tar.gz b/3.13.1.tar.gz new file mode 100644 index 0000000..06dc0a8 --- /dev/null +++ b/3.13.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225873f2066e3f2cf886b89d8a3c5d54aaaf276fb153c35c8fbd7eef16ed8ff2 +size 868563 diff --git a/python-peewee.changes b/python-peewee.changes index 8db2404..802a475 100644 --- a/python-peewee.changes +++ b/python-peewee.changes @@ -1,3 +1,20 @@ +------------------------------------------------------------------- +Wed Mar 11 15:56:45 UTC 2020 - Marketa Calabkova + +- update to 3.13.1 + * This will be a notable release as it adds support for CockroachDB, + a distributed, horizontally-scalable SQL database. + * Allow FOR UPDATE clause to specify one or more tables (FOR UPDATE OF...). + * Support for Postgres LATERAL join. + * Fix non-deterministic join ordering issue when using the filter() + API across several tables + * Bulk insert (insert_many() and insert_from()) will now return + the row count instead of the last insert ID. + * Migration extension now supports altering a column's data-type, + via the new alter_column_type() method. + * Added BloomFilter.from_buffer() method for populating a bloom-filter + from the output of a previous call to the to_buffer() method. + ------------------------------------------------------------------- Wed Dec 11 08:07:29 UTC 2019 - Tomáš Chvátal diff --git a/python-peewee.spec b/python-peewee.spec index bf7a7ef..77d1cea 100644 --- a/python-peewee.spec +++ b/python-peewee.spec @@ -1,7 +1,7 @@ # # spec file for package python-peewee # -# Copyright (c) 2019 SUSE LLC +# 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 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-peewee -Version: 3.11.2 +Version: 3.13.1 Release: 0 Summary: An expressive ORM that supports multiple SQL backends License: BSD-3-Clause @@ -29,6 +29,7 @@ BuildRequires: %{python_module Flask} BuildRequires: %{python_module apsw} BuildRequires: %{python_module devel} BuildRequires: %{python_module mysql-connector-python} +BuildRequires: %{python_module psycopg2} BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} BuildRequires: %{pythons}