Dan DiPasquo
06/05/2020, 2:15 AMpython_dependencies=[
"kubernetes",
"docker",
- "prefect[gcp]",
- "prefect[kubernetes]",
+ "prefect[gcp]~=0.11",
+ "prefect[kubernetes]~=0.11",
(this may be redundant?). I can see in the output from the register/build process:
Step 1/36 : FROM prefecthq/prefect:0.11.5-python3.8
...
Step 30/36 : RUN pip show prefect || pip install git+<https://github.com/PrefectHQ/prefect.git@0.10.7#egg=prefect[kubernetes]>
---> Running in e3773eba79d4
Name: prefect
Version: 0.11.5
...
Additionally I have pulled and run the docker image from the registered flow and inside:
root@b3fc72e3e101:/# python
Python 3.8.3 (default, May 20 2020, 20:38:46)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import prefect
pr>>> prefect.__version__
'0.11.5'
I've now even deleted the flow, all past versions, and registered again and still seeing Prefect Core Version: 0.10.7 in Cloud UI - what am I missing / doing wrong?flow.storage = Docker(
+ prefect_version="0.11.5",
still no joy I'm afraid.Jenny
06/05/2020, 2:38 PM