14
0

- Update to 3.1.17:

* Fix multiple connection attempts when a host name resolve to multiple
    IP addresses (🎫`699`).
  * Use `typing.Self` as a more correct return value annotation of context
    managers and other self-returning methods (see 🎫`708`).
- Add patch fix-pool-import.patch:
  * Correct where we are importing from due to new pool release.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-psycopg?expand=0&rev=7
This commit is contained in:
2024-01-15 05:04:45 +00:00
committed by Git OBS Bridge
parent 153330e5d3
commit 62da2d1111
5 changed files with 30 additions and 4 deletions

13
fix-pool-import.patch Normal file
View File

@@ -0,0 +1,13 @@
Index: psycopg-3.1.17/tests/pool/test_sched_async.py
===================================================================
--- psycopg-3.1.17.orig/tests/pool/test_sched_async.py
+++ psycopg-3.1.17/tests/pool/test_sched_async.py
@@ -8,7 +8,7 @@ import pytest
from psycopg._compat import create_task
try:
- from psycopg_pool.sched import AsyncScheduler
+ from psycopg_pool.sched_async import AsyncScheduler
except ImportError:
# Tests should have been skipped if the package is not available
pass

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f156b09b376871065f02b0dba46686de06110aa2a08a2bdc4790751178322d89
size 502759

3
psycopg-3.1.17.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:922149eb2af9ee57b3557a184ae1370a8daa3f969f11a1c39a94bcea38f40e2e
size 503318

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Mon Jan 15 05:04:06 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 3.1.17:
* Fix multiple connection attempts when a host name resolve to multiple
IP addresses (:ticket:`699`).
* Use `typing.Self` as a more correct return value annotation of context
managers and other self-returning methods (see :ticket:`708`).
- Add patch fix-pool-import.patch:
* Correct where we are importing from due to new pool release.
-------------------------------------------------------------------
Fri Jan 5 17:50:05 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@@ -18,12 +18,14 @@
Name: python-psycopg
# This needs to upgraded in lockstep with python-psycopg-c
Version: 3.1.16
Version: 3.1.17
Release: 0
Summary: PostgreSQL database adapter for Python
License: LGPL-3.0-only
URL: https://psycopg.org/psycopg3/
Source: https://github.com/psycopg/psycopg/archive/refs/tags/%{version}.tar.gz#/psycopg-%{version}.tar.gz
# PATCH-FIX-UPSTREAM One small part of gh#psycopg/psycopg#c3d303d8b3b642ad45b053096e3f8e4111012600.patch
Patch0: fix-pool-import.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 49.2.0}
BuildRequires: %{python_module wheel >= 0.37}