Compare commits
	
		
			17 Commits
		
	
	
		
	
	| Author | SHA256 | Date | |
|---|---|---|---|
| 0f42e72971 | |||
| b37a614a14 | |||
| 9561e1c36a | |||
| bc85619710 | |||
| f0f49f737a | |||
| 0c5dfa34b4 | |||
| df425d9a5c | |||
| 12a9b8f335 | |||
| bdc0365267 | |||
| 0e5a8cc724 | |||
| ea06628a5d | |||
| 50a8aee853 | |||
| 84719a9de1 | |||
| 7aa634eb75 | |||
| 821fbbabbd | |||
| 641342f7cf | |||
| 61113e0502 | 
							
								
								
									
										
											BIN
										
									
								
								peewee-3.17.9.tar.gz
									 (Stored with Git LFS)
									
									
									
									
								
							
							
						
						
									
										
											BIN
										
									
								
								peewee-3.17.9.tar.gz
									 (Stored with Git LFS)
									
									
									
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										3
									
								
								peewee-3.18.2.tar.gz
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								peewee-3.18.2.tar.gz
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
version https://git-lfs.github.com/spec/v1
 | 
			
		||||
oid sha256:20f5ca85d46f0c251cba5ab6f734b09e89ea77af56ad66708225bc7d4331f4c7
 | 
			
		||||
size 931233
 | 
			
		||||
@@ -1,3 +1,36 @@
 | 
			
		||||
-------------------------------------------------------------------
 | 
			
		||||
Thu Aug 21 15:33:41 UTC 2025 - Markéta Machová <mmachova@suse.com>
 | 
			
		||||
 | 
			
		||||
- Convert to libalternatives on SLE-16-based and newer systems only
 | 
			
		||||
 | 
			
		||||
-------------------------------------------------------------------
 | 
			
		||||
Mon Jul 21 03:14:08 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
 | 
			
		||||
 | 
			
		||||
- Update to 3.18.2:
 | 
			
		||||
  * Support Cython 3.1.
 | 
			
		||||
 | 
			
		||||
-------------------------------------------------------------------
 | 
			
		||||
Sat Jul 19 07:29:15 UTC 2025 - Markéta Machová <mmachova@suse.com>
 | 
			
		||||
 | 
			
		||||
- Convert to libalternatives
 | 
			
		||||
 | 
			
		||||
-------------------------------------------------------------------
 | 
			
		||||
Mon May  5 21:01:49 UTC 2025 - Dirk Müller <dmueller@suse.com>
 | 
			
		||||
 | 
			
		||||
- update to 3.18.1:
 | 
			
		||||
  * The behavior of `postgresql_ext.BinaryJSONField.contains()`
 | 
			
		||||
    has changed.  Previously, passing a string to this method
 | 
			
		||||
    would perform a JSON key exists check (`?` operator) instead
 | 
			
		||||
    of JSON contains (`@>` operator). As of 3.18.0,
 | 
			
		||||
    this special-case has been **removed** and the `contains()`
 | 
			
		||||
    method always uses the JSONB contains operator (`@>`).
 | 
			
		||||
    For the **old** behavior of checking whether a key exists,
 | 
			
		||||
    use the `BinaryJSONField.has_key()`
 | 
			
		||||
  * Add options to URL-unquote user and password when using the
 | 
			
		||||
    `db_url` helpers
 | 
			
		||||
  * Support using `postgresql://` URLs when connecting to
 | 
			
		||||
    psycopg3.
 | 
			
		||||
 | 
			
		||||
-------------------------------------------------------------------
 | 
			
		||||
Thu Feb 20 11:21:04 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -16,9 +16,14 @@
 | 
			
		||||
#
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
%if 0%{?suse_version} > 1500
 | 
			
		||||
%bcond_without libalternatives
 | 
			
		||||
%else
 | 
			
		||||
%bcond_with libalternatives
 | 
			
		||||
%endif
 | 
			
		||||
%{?sle15_python_module_pythons}
 | 
			
		||||
Name:           python-peewee
 | 
			
		||||
Version:        3.17.9
 | 
			
		||||
Version:        3.18.2
 | 
			
		||||
Release:        0
 | 
			
		||||
Summary:        An expressive ORM that supports multiple SQL backends
 | 
			
		||||
License:        MIT
 | 
			
		||||
@@ -26,9 +31,6 @@ URL:            https://github.com/coleifer/peewee
 | 
			
		||||
Source:         https://github.com/coleifer/peewee/archive/refs/tags/%{version}.tar.gz#/peewee-%{version}.tar.gz
 | 
			
		||||
BuildRequires:  %{python_module Cython}
 | 
			
		||||
BuildRequires:  %{python_module Flask}
 | 
			
		||||
%if 0%{?suse_version} > 1500
 | 
			
		||||
BuildRequires:  %{python_module apsw}
 | 
			
		||||
%endif
 | 
			
		||||
BuildRequires:  %{python_module devel}
 | 
			
		||||
BuildRequires:  %{python_module pip}
 | 
			
		||||
BuildRequires:  %{python_module pytest}
 | 
			
		||||
@@ -39,8 +41,16 @@ BuildRequires:  pkgconfig
 | 
			
		||||
BuildRequires:  python-rpm-macros
 | 
			
		||||
BuildRequires:  unzip
 | 
			
		||||
BuildRequires:  pkgconfig(sqlite3)
 | 
			
		||||
%if %{with libalternatives}
 | 
			
		||||
BuildRequires:  alts
 | 
			
		||||
Requires:       alts
 | 
			
		||||
%else
 | 
			
		||||
Requires(post): update-alternatives
 | 
			
		||||
Requires(postun): update-alternatives
 | 
			
		||||
%endif
 | 
			
		||||
%if 0%{?suse_version} > 1500
 | 
			
		||||
BuildRequires:  %{python_module apsw}
 | 
			
		||||
%endif
 | 
			
		||||
%python_subpackages
 | 
			
		||||
 | 
			
		||||
%description
 | 
			
		||||
@@ -70,6 +80,9 @@ sed -i -e '1{\@^#! *%{_bindir}.*python@d}' %{buildroot}%{$python_sitearch}/pwiz.
 | 
			
		||||
%postun
 | 
			
		||||
%python_uninstall_alternative pwiz.py
 | 
			
		||||
 | 
			
		||||
%pre
 | 
			
		||||
%python_libalternatives_reset_alternative pwiz.py
 | 
			
		||||
 | 
			
		||||
%files %{python_files}
 | 
			
		||||
%license LICENSE
 | 
			
		||||
%doc CHANGELOG.md README.rst TODO.rst
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user