Munmud opened a new issue, #784: URL: https://github.com/apache/age/issues/784
Dependency mismatch at Apache Age Repo and [`pypi package`](https://pypi.org/project/apache-age-python/) This is happening because the project decription at pypi.org is not correct. ### apache/age python driver repo dependency requirements.txt ```txt pip install psycopg2 --no-binary :all: psycopg2 pip install antlr4-python3-runtime==4.11.1 pip install setuptools ``` ### pypi.org dependency requirements.txt ```txt sudo apt-get install python3-dev libpq-dev pip install --no-binary :all: psycopg2 pip install antlr4-python3-runtime ``` By followig pypi.org project description instruction user getting this error ``` File "/home/moontasir/Desktop/pyage/myenv/lib/python3.10/site-packages/antlr4/atn/ATNDeserializer.py", line 50, in checkVersion raise Exception("Could not deserialize ATN with version " + str(version) + " (expected " + str(SERIALIZED_VERSION) + ").") Exception: Could not deserialize ATN with version (expected 4). ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
