ImportError: cannot import name 'COMPUTE_KIND_TAG' #22755
-
As soon as I reference dagster_snowflake_pandas - ex:
I see the following error in my local dev environment: ImportError: cannot import name 'COMPUTE_KIND_TAG' from 'dagster._core.storage.tags' (/home/dlambert/.local/lib/python3.10/site-packages/dagster/_core/storage/tags.py) It looks like the line referenced in /dagster_snowflake/ops.py may have changed ~3 weeks ago. I tried pip uninstall dagster and pip install dagster to make sure I wasn't missing an update. Are there additional modules or updates I need to reference to pull in recent changes? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Installing your project dependencies, which should include You can also verify the versions installed by running: |
Beta Was this translation helpful? Give feedback.
Installing your project dependencies, which should include
dagster
anddagster_snowflake_pandas
, should be all you need to do to get the latest updated versions. Could you double-check in yoursetup.py
orrequirements.txt
that you're not setting an older version?You can also verify the versions installed by running:
pip freeze | grep dagster