Re: [Trac] Re: Trac and Python 3-+

2022-09-08 Thread Roger Oberholtzer
More info on ASCIIMath from the trac log: 2022-09-08 14:45:08,892 Trac[loader] ERROR: Failed to load plugin from /vol1/trac/systems/plugins/ASCIIMath.py: Traceback (most recent call last): File "/usr/lib/python3.10/site-packages/Trac-1.5.4.dev0-py3.10.egg/trac/loader.py", line 105, in

Re: [Trac] Re: Trac and Python 3-+

2022-09-08 Thread Roger Oberholtzer
I see that I have ASCIIMath.py in a plugins directory for my site. So that must be where Trac 1.2 looked for these things. In that there is a __pycache__ directory. I see that it contains a newly compiled .pyc file. The name is a bit different from the .py file: ASCIIMath.cpython-310.pyc I would

Re: [Trac] Re: Trac and Python 3-+

2022-09-08 Thread Roger Oberholtzer
I have trac 1.5 (svn co) running in Python3. There was confusion my end because the mod_python for my distro uses Python 2.7 (it seems not to be maintained by the distro - it is an old installable). I needed to move to mod_wsgi. That took a couple minutes to figure out. It looks as I expected in

Re: [Trac] Re: Trac and Python 3-+

2022-09-08 Thread Roger Oberholtzer
I can add that if I install jinja2 by hand, then trac installs. It just seems that the trac install does not manage this. Now to see if I can get my site back up in this newfangled trac. On Thu, Sep 8, 2022 at 9:02 AM Roger Oberholtzer wrote: > > I checked out the latest with svn, and tried to

Re: [Trac] Re: Trac and Python 3-+

2022-09-08 Thread Roger Oberholtzer
I checked out the latest with svn, and tried to install it. Similar error: # svn co https://svn.edgewall.org/repos/trac/trunk trac # cd trac # python3 setup.py install Traceback (most recent call last): File "/root/trac/trac/setup.py", line 32, in from trac.dist import

Re: [Trac] Re: Trac and Python 3-+

2022-09-08 Thread Roger Oberholtzer
Updating pip to 22.2.2 did not make a difference. Perhaps I should check it out via svn. What's the proper command to get the best version of 1.5? On Wed, Sep 7, 2022 at 4:52 PM RjOllos wrote: > > > > On Wednesday, September 7, 2022 at 5:50:40 AM UTC-7 Roger Oberholtzer wrote: >> >> I have