What upgrade paths have you used for upgrading a site to Python 3?

  • in-place migration
  • transmogrifier pipeline
  • other (please specify in comments)

0 voters

For existing old sites (4.x), we have migrated the sites to 5.1.x using transmogrifier, and we are right now testing to migrate them in-place to 5.2.

For new sites, we started the development with the beta and RC versions of 5.2 directly on top of python 3.

Custom migrations:

  • full export using collective.jsonify
  • import into ArangoDB as migration database
  • custom importer (not a pipeline) through plone.restapi
1 Like