mirror of
https://github.com/wassname/ray.git
synced 2026-07-24 13:20:22 +08:00
Version bump 1.0.1
This commit is contained in:
+2
-2
@@ -7,7 +7,7 @@ set -x
|
||||
|
||||
GPU=""
|
||||
BASE_IMAGE="ubuntu:focal"
|
||||
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.1.0.dev0-cp37-cp37m-manylinux1_x86_64.whl"
|
||||
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.0.1-cp37-cp37m-manylinux1_x86_64.whl"
|
||||
PYTHON_VERSION=""
|
||||
|
||||
while [[ $# -gt 0 ]]
|
||||
@@ -90,4 +90,4 @@ if [ $BUILD_EXAMPLES ]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
rm -rf "$WHEEL_DIR"
|
||||
rm -rf "$WHEEL_DIR"
|
||||
|
||||
@@ -102,7 +102,7 @@ from ray import util # noqa: E402
|
||||
|
||||
# Replaced with the current commit when building the wheels.
|
||||
__commit__ = "{{RAY_COMMIT_SHA}}"
|
||||
__version__ = "1.1.0.dev0"
|
||||
__version__ = "1.0.1"
|
||||
|
||||
__all__ = [
|
||||
"__version__",
|
||||
|
||||
@@ -138,7 +138,7 @@ CoreWorkerProcess::CoreWorkerProcess(const CoreWorkerOptions &options)
|
||||
RAY_LOG(DEBUG) << "Stats setup in core worker.";
|
||||
// Initialize stats in core worker global tags.
|
||||
const ray::stats::TagsType global_tags = {{ray::stats::ComponentKey, "core_worker"},
|
||||
{ray::stats::VersionKey, "1.1.0.dev0"}};
|
||||
{ray::stats::VersionKey, "1.0.1"}};
|
||||
|
||||
// NOTE(lingxuan.zlx): We assume RayConfig is initialized before it's used.
|
||||
// RayConfig is generated in Java_io_ray_runtime_RayNativeRuntime_nativeInitialize
|
||||
|
||||
@@ -61,7 +61,7 @@ int main(int argc, char *argv[]) {
|
||||
RayConfig::instance().initialize(config_map);
|
||||
const ray::stats::TagsType global_tags = {
|
||||
{ray::stats::ComponentKey, "gcs_server"},
|
||||
{ray::stats::VersionKey, "1.1.0.dev0"},
|
||||
{ray::stats::VersionKey, "1.0.1"},
|
||||
{ray::stats::NodeAddressKey, node_ip_address}};
|
||||
ray::stats::Init(global_tags, metrics_agent_port);
|
||||
|
||||
|
||||
@@ -254,7 +254,7 @@ int main(int argc, char *argv[]) {
|
||||
// Initialize stats.
|
||||
const ray::stats::TagsType global_tags = {
|
||||
{ray::stats::ComponentKey, "raylet"},
|
||||
{ray::stats::VersionKey, "1.1.0.dev0"},
|
||||
{ray::stats::VersionKey, "1.0.1"},
|
||||
{ray::stats::NodeAddressKey, node_ip_address}};
|
||||
ray::stats::Init(global_tags, metrics_agent_port);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user