Are there plans to port to python3 ?
On debian:bullseye you can "pip install z3" but because it's under python3 you are greeted with:
z3 status
Traceback (most recent call last):
File "/usr/local/bin/z3", line 5, in <module>
from z3.snap import main
File "/usr/local/lib/python3.9/dist-packages/z3/snap.py", line 14, in <module>
from z3.config import get_config
File "/usr/local/lib/python3.9/dist-packages/z3/config.py", line 1, in <module>
import ConfigParser
ModuleNotFoundError: No module named 'ConfigParser'
This is due to the renaming of ConfigParser module to configparser, there could be other issues, I'm curious if anyone is planning to scrub z3 for python3 support?
Are there plans to port to python3 ?
On debian:bullseye you can "pip install z3" but because it's under python3 you are greeted with:
This is due to the renaming of ConfigParser module to configparser, there could be other issues, I'm curious if anyone is planning to scrub z3 for python3 support?