diff options
author | Marius Bakke <marius@gnu.org> | 2023-09-15 23:12:46 +0800 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2023-09-22 01:29:21 +0800 |
commit | e7fe89d716be3f13f17d5539eeb9c7aa35d9a9ee (patch) | |
tree | 68de731acaca4abee8b5963fae5945cb587849c0 /gnu/packages | |
parent | 0e25cba87d7fa915b4e357e475759e10b953cac6 (diff) | |
download | guix-e7fe89d716be3f13f17d5539eeb9c7aa35d9a9ee.tar.gz guix-e7fe89d716be3f13f17d5539eeb9c7aa35d9a9ee.zip |
gnu: python-psycopg-pool: Update to 3.1.7.
* gnu/packages/databases.scm (python-psycopg-pool): Update to 3.1.7.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/databases.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 8a2063ee29..cd1a810a18 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3830,13 +3830,13 @@ libraries with SQLALchemy.") (name "python-psycopg-pool") ;; The connection pooling code is on a different release cadence ;; from the driver code, so fetch the latest PyPI release. - (version "3.0.3") + (version "3.1.7") (source (origin (method url-fetch) (uri (pypi-uri "psycopg-pool" version)) (sha256 (base32 - "1nx139pwzsgrz253zjxw2sf8h713s79h4cp1falmpc39j08djb46")))) + "1pkx7nj1mhacwpna7ldzqfqxd1xg8826600r0bs9ad1h93f429yh")))) (build-system python-build-system) (arguments (list #:tests? #f ;run for psycopg below |