Skip to content

Commit 6329eaa

Browse files
authored
[Core] Update the vendored cloudpickle version (#51322)
Signed-off-by: Jiajun Yao <jeromeyjj@gmail.com>
1 parent 1ccf062 commit 6329eaa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

python/ray/cloudpickle/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33

44
Right now, we will need to update the vendored cloudpickle manually. Here are the steps to do so:
55
1. Overwrite the `cloudpickle.py` and `cloudpickle_fast.py` from the [upstream](https://github.com/cloudpipe/cloudpickle)
6-
2. Run performance benchmarks to validate no regression. (e.g. microbenchmark, scalability tests, etc.)
6+
2. Update the version in python/ray/cloudpickle/__init__.py
7+
3. Run performance benchmarks to validate no regression. (e.g. microbenchmark, scalability tests, etc.)

python/ray/cloudpickle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# expose their Pickler subclass at top-level under the "Pickler" name.
1212
Pickler = CloudPickler
1313

14-
__version__ = '2.0.0'
14+
__version__ = '3.0.0'
1515

1616

1717
def _warn_msg(obj, method, exc):

0 commit comments

Comments
 (0)