Softcatala / web-2015

Repositori per a la versió 3 de la web de Softcatalà
1 stars 3 forks source link

Migrar de nou a fabric #255

Open xavivars opened 1 year ago

xavivars commented 1 year ago

Fabric3 no funciona amb python 3.10.

Cal re-migrar a fabric (o cercar alternatives).

Fins a eixe moment, quan es crea un virtualenv nou i s'instal·la fabric3, cal modificar la llibreria "original", aplicant el pedaç https://github.com/mathiasertl/fabric/pull/57/files

- from collections import Mapping
+ try:
+     from collections import Mapping
+ except ImportError:
+     from collections.abc import Mapping