tags 802060 patch
thanks

Hello,

I found this bug report when I spotted that this package also failed
to build in the current Ubuntu development release. I was able to
reproduce it on my Sid system and fixed it by installing these two
packages:
python3-psycopg2
python3-sqlalchemy

The first one was understandable, because it is the corresponding
python3 package to the one already listed among the build
dependencies. It is not clear to my why sqlalchemy was needed,
and furthermore why only the python3 version was required.
(I doublechecked and I did not have python-sqlalchemy installed
already)

Nevertheless, the attached patch should resolve this issue.
I took the liberty of adding the same version number requirement for
python3-psycopg2 in order to keep it in sync with the package above.

--
mvh / best regards
Hans Joachim Desserud
http://desserud.org
Index: debian/control
===================================================================
--- debian/control	(revisjon 34523)
+++ debian/control	(arbeidskopi)
@@ -6,7 +6,9 @@
 Build-Depends: debhelper (>= 9), dh-python, python3-all, 
  python3-setuptools,
 # tests:
- python-psycopg2 (>= 2.5.2)
+ python-psycopg2 (>= 2.5.2),
+ python3-psycopg2 (>= 2.5.2),
+ python3-sqlalchemy
 Standards-Version: 3.9.6
 Homepage: http://aiopg.readthedocs.org/
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/aiopg/trunk/

Reply via email to