From b29a28878ca7288822ed09b45430fa7270a3cd50 Mon Sep 17 00:00:00 2001 From: Will Foster Date: Fri, 12 Apr 2024 12:48:18 +0100 Subject: [PATCH] reduce python site-package dir juggling. * We may not need anything more than copies of the 3.10 stamped noarch Python libs moved into the current system python site-packages. Change-Id: I967e710fa2a2bf69e5b739462dd364c06686f2c7 --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f94b1d09a..550e5ef76 100644 --- a/README.md +++ b/README.md @@ -172,15 +172,13 @@ rpm -ivh --nodeps https://funcamp.net/w/python3-wordpress-xmlrpc-2.3-14.noarch.r ``` This package is also available via `pip` via `pip install python-wordpress-xmlrpc` -* As this package was not rebuilt for Fedora38+ you'll need to employ a workround for nerwer versions of Python for this to function. +* As this package was not rebuilt for Fedora38+ you'll need to employ a workaround for newer versions of Python for this to function. * If `python --version` is anything other than `Python 3.10` you'll need: ``` mypythonversion=$(python --version | sed 's/Python //' | sed 's/..$//') cd /usr/lib -mv python3.10 python3.10-workaround -rsync -avH python3.10-workaround/site-packages/* python$mypythonversion/site-packages/ -ln -s python$mypythonversion python3.10 +rsync -avH python3.10/site-packages/wordpress_xmlrpc python$mypythonversion/site-packages/ ``` In QUADS 2.0 **this package dependency is no longer needed**