diff --git a/CHANGES.md b/CHANGES.md index efeee3c6a..67c5fe69d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,7 +5,7 @@ This release adds Pex `--scie {eager,lazy}` support for Linux ppc64le and s390x. -* Add support for Linux ppc64le and s390x. (#2635) +* Add `--scie` support for Linux ppc64le and s390x. (#2635) ## 2.27.1 diff --git a/tests/integration/scie/test_pex_scie.py b/tests/integration/scie/test_pex_scie.py index 467f8ab25..a96bd2af5 100644 --- a/tests/integration/scie/test_pex_scie.py +++ b/tests/integration/scie/test_pex_scie.py @@ -310,7 +310,7 @@ def test_specified_science_binary(tmpdir): local_science_binary = os.path.join(str(tmpdir), "science") with open(local_science_binary, "wb") as write_fp, URLFetcher().get_body_stream( - "https://github.com/a-scie/lift/releases/download/v0.9.0/{binary}".format( + "https://github.com/a-scie/lift/releases/download/v0.10.0/{binary}".format( binary=SciePlatform.CURRENT.qualified_binary_name("science") ) ) as read_fp: @@ -354,7 +354,7 @@ def test_specified_science_binary(tmpdir): cached_science_binaries ), "Expected the local science binary to be used but not cached." assert ( - "0.9.0" + "0.10.0" == subprocess.check_output(args=[local_science_binary, "--version"]).decode("utf-8").strip() )