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
Hello team, thanks a lot for building amarna! Could you pin the packages on the file requirements.txt? There is a currently conflict on cairo-format with the current latest versions of cairo-lang and amarna. To reproduce it, on Python 3.7.2, you can run the following code:
python -m venv .venvtest
source .venvtest/bin/activate
pip install --upgrade pip
pip install cairo-lang
cairo-format # it works
pip install git+https://github.com/crytic/amarna.git@main
cairo-format # it fails
The text was updated successfully, but these errors were encountered:
Hi @achab, thanks for reporting this. The issue happens because cairo-lang uses an old version of lark (0.12). I've added versions to the requirements file (4015dff) but this does not fix the issue.
For now, the best solution is to use two virtual environments.
Another option that works (for now) is to first install amarna, and then cairo-lang.
Hello team, thanks a lot for building amarna! Could you pin the packages on the file requirements.txt? There is a currently conflict on
cairo-format
with the current latest versions ofcairo-lang
andamarna
. To reproduce it, on Python 3.7.2, you can run the following code:The text was updated successfully, but these errors were encountered: