You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have installed poxy in a Ubuntu 20.04 (focal) environment with pip install poxy, which currently gives 0.13.7.
Describe the bug
Executing poxy on a source tree fails with:
$ poxy
Traceback (most recent call last):
File "/usr/local/bin/poxy", line 5, in <module>
from poxy import main
File "/usr/local/lib/python3.8/dist-packages/poxy/__init__.py", line 7, in <module>
from .main import main, main_blog_post
File "/usr/local/lib/python3.8/dist-packages/poxy/main.py", line 18, in <module>
from .run import run
File "/usr/local/lib/python3.8/dist-packages/poxy/run.py", line 20, in <module>
from . import doxygen, fixers, graph, soup, xml_utils
File "/usr/local/lib/python3.8/dist-packages/poxy/doxygen.py", line 114, in <module>
def version() -> tuple[int, int, int]:
TypeError: 'type' object is not subscriptable
Poxy 0.13.7 runs fine on the same source tree on Ubuntu 22.04 however (with python 3.10.12).
Also, Poxy 0.13.0 works on Ubuntu 20.04 (python 3.8.10), it is just versions >= 0.13.1 that raise the above error.
Additional information
Please allow poxy to run in a Ubuntu focal environment.
In my case, I'm using a focal based Dockerfile for my CI, to build binary packages that run on several older systems.
To keep that compatibility (for AppImage builds etc), the environment cannot be updated any time soon.
--bug-report
$ poxy --bug-report
Traceback (most recent call last):
File "/usr/local/bin/poxy", line 5, in <module>
from poxy import main
File "/usr/local/lib/python3.8/dist-packages/poxy/__init__.py", line 7, in <module>
from .main import main, main_blog_post
File "/usr/local/lib/python3.8/dist-packages/poxy/main.py", line 18, in <module>
from .run import run
File "/usr/local/lib/python3.8/dist-packages/poxy/run.py", line 20, in <module>
from . import doxygen, fixers, graph, soup, xml_utils
File "/usr/local/lib/python3.8/dist-packages/poxy/doxygen.py", line 114, in <module>
def version() -> tuple[int, int, int]:
TypeError: 'type' object is not subscriptable
[x ] I have tried to attach the zip file generated when using the --bug-report option
The text was updated successfully, but these errors were encountered:
Environment
I have installed poxy in a Ubuntu 20.04 (focal) environment with
pip install poxy
, which currently gives 0.13.7.Describe the bug
Executing poxy on a source tree fails with:
Poxy 0.13.7 runs fine on the same source tree on Ubuntu 22.04 however (with python 3.10.12).
Also, Poxy 0.13.0 works on Ubuntu 20.04 (python 3.8.10), it is just versions >= 0.13.1 that raise the above error.
Additional information
Please allow poxy to run in a Ubuntu focal environment.
In my case, I'm using a focal based Dockerfile for my CI, to build binary packages that run on several older systems.
To keep that compatibility (for AppImage builds etc), the environment cannot be updated any time soon.
--bug-report
The text was updated successfully, but these errors were encountered: