<@ULVA73B9P> Does prefect maintain backwards compa...
# ask-marvin
w
@Marvin Does prefect maintain backwards compatibility such that you can run spaCy tasks, Postgres tasks etc ?
m
Prefect does aim to maintain backwards compatibility as much as possible. However, there might be some changes in the way tasks are defined and run between different versions of Prefect. For example, in Prefect 2, the new way to define tasks is using the
@task
decorator and flows are defined using the
@flow
decorator. As for running specific tasks such as spaCy tasks or Postgres tasks, it would depend on how these tasks are defined and integrated within your Prefect flow. If these tasks are defined following the Prefect task guidelines, they should be able to run without issues. Please note that it's always a good practice to check the Prefect documentation or community resources for any specific changes or updates related to task definitions and execution.