chris_marchetti
02/21/2022, 3:11 PMflask 1.1.4 requires itsdangerous<2.0,>=0.24, but you'll have itsdangerous 2.1.0 which is incompatible.
Has anyone else seen this behavior after updating meltano?edgar_ramirez_mondragon
02/21/2022, 4:23 PMmeltano upgrade
or pip?chris_marchetti
02/21/2022, 4:34 PMemcp
02/21/2022, 6:25 PMpip3 install itsdangerous==1.1.0
pip3 install importlib-metadata==4.4
pip3 install cryptography==3.4.8
pip3 install zipp==3.1.0
pip3 install meltano poetry
https://gitlab.com/jrgemcp-public/charms/meltano-charm/-/blob/main/hooks/install#L19-25edgar_ramirez_mondragon
02/21/2022, 7:03 PM$ python3.9 -m venv test-install
$ source test-install/bin/activate
(test-install) > $ pip install meltano==1.96.0
...
$ which meltano
/Users/edgarramirez/Code/test-install/bin/meltano
$ meltano --version
meltano, version 1.96.0
We might end up doing something similar to Airflow's approachandrew_stewart
03/02/2022, 12:56 AMandrew_stewart
03/02/2022, 12:58 AMpip3 install meltano # errors
pip3 install meltano # success!
utku
04/23/2022, 8:51 PMpip3 install meltano
....
ERROR: flask 1.1.4 has requirement itsdangerous<2.0,>=0.24, but you'll have itsdangerous 2.1.2 which is incompatible.
....
pip3 uninstall meltano
....
pip3 install meltano
....
Installing collected packages: meltano, itsdangerous
Attempting uninstall: itsdangerous
Found existing installation: itsdangerous 2.1.2
Uninstalling itsdangerous-2.1.2:
Successfully uninstalled itsdangerous-2.1.2
Successfully installed itsdangerous-1.1.0 meltano-1.101.0