Brian Tang
07/04/2023, 8:21 AM1.7.0
. we started the process of updating our docker images to use the latest flytekit
as well with:
RUN pip install boto3 awscli flytekit==1.7.0
but we’re getting conflicting dependencies related to `fsspec`:
RROR: Cannot install flytekit and flytekit==1.7.0 because these package versions have conflicting dependencies.
The conflict is caused by:
flytekit 1.7.0 depends on fsspec>=2023.3.0
s3fs 2023.1.0 depends on fsspec==2023.1.0
this works if we downgraded back to flytekit==1.5.0
Samhita Alla
Kevin Su
07/05/2023, 10:33 AMEduardo Apolinario (eapolinario)
07/05/2023, 5:29 PMBrian Tang
07/06/2023, 1:06 AMawscli
, i.e. pip install boto3 flytekit==1.7.0
but still getting the deps conflict. we need boto3
as it’s part of our application layer to interact w our aws infraEduardo Apolinario (eapolinario)
07/11/2023, 6:59 PMbotocore==1.29.161
or s3fs==2023.4.0
?Brian Tang
07/12/2023, 2:30 AM