Skip to content

Commit

Permalink
Add real file checksums. (#877)
Browse files Browse the repository at this point in the history
* Add real file checksums.
  • Loading branch information
calina-c authored Jul 12, 2022
1 parent 62864b4 commit 1a1363f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions READMEs/c2d-flow-more-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ALGO_metadata = {
"entrypoint": "python $ALGO",
"image": "oceanprotocol/algo_dockers",
"tag": "python-branin", # This image provides all the dependencies of the grayscale.py algorithm
"checksum": "44e10daa6637893f4276bb8d7301eb35306ece50f61ca34dcab550",
"checksum": "sha256:8221d20c1c16491d7d56b9657ea09082c0ee4a8ab1a6621fa720da58b09580e4",
},
}
}
Expand Down Expand Up @@ -146,7 +146,7 @@ ALGO_metadata = {
"entrypoint": "python $ALGO",
"image": "oceanprotocol/algo_dockers",
"tag": "python-panda", # This image provides all the dependencies of the logistic_regression.py algorithm
"checksum": "44e10daa6637893f4276bb8d7301eb35306ece50f61ca34dcab550",
"checksum": "sha256:8221d20c1c16491d7d56b9657ea09082c0ee4a8ab1a6621fa720da58b09580e4",
},
}
}
Expand Down
2 changes: 1 addition & 1 deletion READMEs/c2d-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ ALGO_metadata = {
"entrypoint": "python $ALGO",
"image": "oceanprotocol/algo_dockers",
"tag": "python-branin",
"checksum": "44e10daa6637893f4276bb8d7301eb35306ece50f61ca34dcab550",
"checksum": "sha256:8221d20c1c16491d7d56b9657ea09082c0ee4a8ab1a6621fa720da58b09580e4",
},
}
}
Expand Down
4 changes: 2 additions & 2 deletions tests/resources/ddo_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def get_registered_algorithm_with_access_service(
"entrypoint": "python $ALGO",
"image": "oceanprotocol/algo_dockers",
"tag": "python-branin",
"checksum": "44e10daa6637893f4276bb8d7301eb35306ece50f61ca34dcab550",
"checksum": "sha256:8221d20c1c16491d7d56b9657ea09082c0ee4a8ab1a6621fa720da58b09580e4",
},
}
}
Expand Down Expand Up @@ -283,7 +283,7 @@ def get_raw_algorithm() -> str:
"entrypoint": "node $ALGO",
"image": "ubuntu",
"tag": "latest",
"checksum": "44e10daa6637893f4276bb8d7301eb35306ece50f61ca34dcab550",
"checksum": "sha256:cd3d86f1fb368c6a53659d467560010ab9e0695528127ea336fe32f68f7ba09f",
},
}
)
Expand Down

0 comments on commit 1a1363f

Please sign in to comment.