{ "info": { "author": "Ray Team", "author_email": "ray-dev@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": ".. image:: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png\n\n.. image:: https://readthedocs.org/projects/ray/badge/?version=master\n :target: http://docs.ray.io/en/master/?badge=master\n\n.. image:: https://img.shields.io/badge/Ray-Join%20Slack-blue\n :target: https://forms.gle/9TSdDYUgxYs8SA9e8\n\n.. image:: https://img.shields.io/badge/Discuss-Ask%20Questions-blue\n :target: https://discuss.ray.io/\n\n.. image:: https://img.shields.io/twitter/follow/raydistributed.svg?style=social&logo=twitter\n :target: https://twitter.com/raydistributed\n\n|\n\n\n**Ray provides a simple, universal API for building distributed applications.**\n\nRay is packaged with the following libraries for accelerating machine learning workloads:\n\n- `Tune`_: Scalable Hyperparameter Tuning\n- `RLlib`_: Scalable Reinforcement Learning\n- `Train`_: Distributed Deep Learning (beta)\n- `Datasets`_: Distributed Data Loading and Compute\n\nAs well as libraries for taking ML and distributed apps to production:\n\n- `Serve`_: Scalable and Programmable Serving\n- `Workflows`_: Fast, Durable Application Flows (alpha)\n\nThere are also many `community integrations `_ with Ray, including `Dask`_, `MARS`_, `Modin`_, `Horovod`_, `Hugging Face`_, `Scikit-learn`_, and others. Check out the `full list of Ray distributed libraries here `_.\n\nInstall Ray with: ``pip install ray``. For nightly wheels, see the\n`Installation page `__.\n\n.. _`Modin`: https://github.com/modin-project/modin\n.. _`Hugging Face`: https://huggingface.co/transformers/main_classes/trainer.html#transformers.Trainer.hyperparameter_search\n.. _`MARS`: https://docs.ray.io/en/latest/data/mars-on-ray.html\n.. _`Dask`: https://docs.ray.io/en/latest/data/dask-on-ray.html\n.. _`Horovod`: https://horovod.readthedocs.io/en/stable/ray_include.html\n.. _`Scikit-learn`: https://docs.ray.io/en/master/joblib.html\n.. _`Serve`: https://docs.ray.io/en/master/serve/index.html\n.. _`Datasets`: https://docs.ray.io/en/master/data/dataset.html\n.. _`Workflows`: https://docs.ray.io/en/master/workflows/concepts.html\n.. _`Train`: https://docs.ray.io/en/master/train/train.html\n\n\nQuick Start\n-----------\n\nExecute Python functions in parallel.\n\n.. code-block:: python\n\n import ray\n ray.init()\n\n @ray.remote\n def f(x):\n return x * x\n\n futures = [f.remote(i) for i in range(4)]\n print(ray.get(futures))\n\nTo use Ray's actor model:\n\n.. code-block:: python\n\n\n import ray\n ray.init()\n\n @ray.remote\n class Counter(object):\n def __init__(self):\n self.n = 0\n\n def increment(self):\n self.n += 1\n\n def read(self):\n return self.n\n\n counters = [Counter.remote() for i in range(4)]\n [c.increment.remote() for c in counters]\n futures = [c.read.remote() for c in counters]\n print(ray.get(futures))\n\n\nRay programs can run on a single machine, and can also seamlessly scale to large clusters. To execute the above Ray script in the cloud, just download `this configuration file `__, and run:\n\n``ray submit [CLUSTER.YAML] example.py --start``\n\nRead more about `launching clusters `_.\n\nTune Quick Start\n----------------\n\n.. image:: https://github.com/ray-project/ray/raw/master/doc/source/images/tune-wide.png\n\n`Tune`_ is a library for hyperparameter tuning at any scale.\n\n- Launch a multi-node distributed hyperparameter sweep in less than 10 lines of code.\n- Supports any deep learning framework, including PyTorch, `PyTorch Lightning `_, TensorFlow, and Keras.\n- Visualize results with `TensorBoard `__.\n- Choose among scalable SOTA algorithms such as `Population Based Training (PBT)`_, `Vizier's Median Stopping Rule`_, `HyperBand/ASHA`_.\n- Tune integrates with many optimization libraries such as `Facebook Ax `_, `HyperOpt `_, and `Bayesian Optimization `_ and enables you to scale them transparently.\n\nTo run this example, you will need to install the following:\n\n.. code-block:: bash\n\n $ pip install \"ray[tune]\"\n\n\nThis example runs a parallel grid search to optimize an example objective function.\n\n.. code-block:: python\n\n from ray import tune\n\n\n def objective(step, alpha, beta):\n return (0.1 + alpha * step / 100)**(-1) + beta * 0.1\n\n\n def training_function(config):\n # Hyperparameters\n alpha, beta = config[\"alpha\"], config[\"beta\"]\n for step in range(10):\n # Iterative training function - can be any arbitrary training procedure.\n intermediate_score = objective(step, alpha, beta)\n # Feed the score back back to Tune.\n tune.report(mean_loss=intermediate_score)\n\n\n analysis = tune.run(\n training_function,\n config={\n \"alpha\": tune.grid_search([0.001, 0.01, 0.1]),\n \"beta\": tune.choice([1, 2, 3])\n })\n\n print(\"Best config: \", analysis.get_best_config(metric=\"mean_loss\", mode=\"min\"))\n\n # Get a dataframe for analyzing trial results.\n df = analysis.results_df\n\nIf TensorBoard is installed, automatically visualize all trial results:\n\n.. code-block:: bash\n\n tensorboard --logdir ~/ray_results\n\n.. _`Tune`: https://docs.ray.io/en/master/tune.html\n.. _`Population Based Training (PBT)`: https://docs.ray.io/en/master/tune/api_docs/schedulers.html#population-based-training-tune-schedulers-populationbasedtraining\n.. _`Vizier's Median Stopping Rule`: https://docs.ray.io/en/master/tune/api_docs/schedulers.html#median-stopping-rule-tune-schedulers-medianstoppingrule\n.. _`HyperBand/ASHA`: https://docs.ray.io/en/master/tune/api_docs/schedulers.html#asha-tune-schedulers-ashascheduler\n\nRLlib Quick Start\n-----------------\n\n.. image:: https://github.com/ray-project/ray/raw/master/doc/source/rllib/images/rllib-logo.png\n\n`RLlib`_ is an industry-grade library for reinforcement learning (RL), built on top of Ray.\nIt offers high scalability and unified APIs for a\n`variety of industry- and research applications `_.\n\n.. code-block:: bash\n\n $ pip install \"ray[rllib]\" tensorflow # or torch\n\n\n.. Do NOT edit the following code directly in this README! Instead, edit\n the ray/rllib/examples/documentation/rllib_on_ray_readme.py script and then\n copy the new code in here:\n\n.. code-block:: python\n\n import gym\n from ray.rllib.agents.ppo import PPOTrainer\n\n\n # Define your problem using python and openAI's gym API:\n class SimpleCorridor(gym.Env):\n \"\"\"Corridor in which an agent must learn to move right to reach the exit.\n\n ---------------------\n | S | 1 | 2 | 3 | G | S=start; G=goal; corridor_length=5\n ---------------------\n\n Possible actions to chose from are: 0=left; 1=right\n Observations are floats indicating the current field index, e.g. 0.0 for\n starting position, 1.0 for the field next to the starting position, etc..\n Rewards are -0.1 for all steps, except when reaching the goal (+1.0).\n \"\"\"\n\n def __init__(self, config):\n self.end_pos = config[\"corridor_length\"]\n self.cur_pos = 0\n self.action_space = gym.spaces.Discrete(2) # left and right\n self.observation_space = gym.spaces.Box(0.0, self.end_pos, shape=(1,))\n\n def reset(self):\n \"\"\"Resets the episode and returns the initial observation of the new one.\n \"\"\"\n self.cur_pos = 0\n # Return initial observation.\n return [self.cur_pos]\n\n def step(self, action):\n \"\"\"Takes a single step in the episode given `action`\n\n Returns:\n New observation, reward, done-flag, info-dict (empty).\n \"\"\"\n # Walk left.\n if action == 0 and self.cur_pos > 0:\n self.cur_pos -= 1\n # Walk right.\n elif action == 1:\n self.cur_pos += 1\n # Set `done` flag when end of corridor (goal) reached.\n done = self.cur_pos >= self.end_pos\n # +1 when goal reached, otherwise -1.\n reward = 1.0 if done else -0.1\n return [self.cur_pos], reward, done, {}\n\n\n # Create an RLlib Trainer instance.\n trainer = PPOTrainer(\n config={\n # Env class to use (here: our gym.Env sub-class from above).\n \"env\": SimpleCorridor,\n # Config dict to be passed to our custom env's constructor.\n \"env_config\": {\n # Use corridor with 20 fields (including S and G).\n \"corridor_length\": 20\n },\n # Parallelize environment rollouts.\n \"num_workers\": 3,\n })\n\n # Train for n iterations and report results (mean episode rewards).\n # Since we have to move at least 19 times in the env to reach the goal and\n # each move gives us -0.1 reward (except the last move at the end: +1.0),\n # we can expect to reach an optimal episode reward of -0.1*18 + 1.0 = -0.8\n for i in range(5):\n results = trainer.train()\n print(f\"Iter: {i}; avg. reward={results['episode_reward_mean']}\")\n\n\nAfter training, you may want to perform action computations (inference) in your environment.\nHere is a minimal example on how to do this. Also\n`check out our more detailed examples here `_\n(in particular for `normal models `_,\n`LSTMs `_,\nand `attention nets `_).\n\n.. code-block:: python\n\n # Perform inference (action computations) based on given env observations.\n # Note that we are using a slightly different env here (len 10 instead of 20),\n # however, this should still work as the agent has (hopefully) learned\n # to \"just always walk right!\"\n env = SimpleCorridor({\"corridor_length\": 10})\n # Get the initial observation (should be: [0.0] for the starting position).\n obs = env.reset()\n done = False\n total_reward = 0.0\n # Play one episode.\n while not done:\n # Compute a single action, given the current observation\n # from the environment.\n action = trainer.compute_single_action(obs)\n # Apply the computed action in the environment.\n obs, reward, done, info = env.step(action)\n # Sum up rewards for reporting purposes.\n total_reward += reward\n # Report results.\n print(f\"Played 1 episode; total-reward={total_reward}\")\n\n\n.. _`RLlib`: https://docs.ray.io/en/master/rllib/index.html\n\n\nRay Serve Quick Start\n---------------------\n\n.. image:: https://raw.githubusercontent.com/ray-project/ray/master/doc/source/serve/logo.svg\n :width: 400\n\n`Ray Serve`_ is a scalable model-serving library built on Ray. It is:\n\n- Framework Agnostic: Use the same toolkit to serve everything from deep\n learning models built with frameworks like PyTorch or Tensorflow & Keras\n to Scikit-Learn models or arbitrary business logic.\n- Python First: Configure your model serving declaratively in pure Python,\n without needing YAMLs or JSON configs.\n- Performance Oriented: Turn on batching, pipelining, and GPU acceleration to\n increase the throughput of your model.\n- Composition Native: Allow you to create \"model pipelines\" by composing multiple\n models together to drive a single prediction.\n- Horizontally Scalable: Serve can linearly scale as you add more machines. Enable\n your ML-powered service to handle growing traffic.\n\nTo run this example, you will need to install the following:\n\n.. code-block:: bash\n\n $ pip install scikit-learn\n $ pip install \"ray[serve]\"\n\nThis example runs serves a scikit-learn gradient boosting classifier.\n\n.. code-block:: python\n\n import pickle\n import requests\n\n from sklearn.datasets import load_iris\n from sklearn.ensemble import GradientBoostingClassifier\n\n from ray import serve\n\n serve.start()\n\n # Train model.\n iris_dataset = load_iris()\n model = GradientBoostingClassifier()\n model.fit(iris_dataset[\"data\"], iris_dataset[\"target\"])\n\n @serve.deployment(route_prefix=\"/iris\")\n class BoostingModel:\n def __init__(self, model):\n self.model = model\n self.label_list = iris_dataset[\"target_names\"].tolist()\n\n async def __call__(self, request):\n payload = await request.json()[\"vector\"]\n print(f\"Received flask request with data {payload}\")\n\n prediction = self.model.predict([payload])[0]\n human_name = self.label_list[prediction]\n return {\"result\": human_name}\n\n\n # Deploy model.\n BoostingModel.deploy(model)\n\n # Query it!\n sample_request_input = {\"vector\": [1.2, 1.0, 1.1, 0.9]}\n response = requests.get(\"http://localhost:8000/iris\", json=sample_request_input)\n print(response.text)\n # Result:\n # {\n # \"result\": \"versicolor\"\n # }\n\n\n.. _`Ray Serve`: https://docs.ray.io/en/master/serve/index.html\n\nMore Information\n----------------\n\n- `Documentation`_\n- `Tutorial`_\n- `Blog`_\n- `Ray 1.0 Architecture whitepaper`_ **(new)**\n- `Exoshuffle: large-scale data shuffle in Ray`_ **(new)**\n- `RLlib paper`_\n- `RLlib flow paper`_\n- `Tune paper`_\n\n*Older documents:*\n\n- `Ray paper`_\n- `Ray HotOS paper`_\n\n.. _`Documentation`: http://docs.ray.io/en/master/index.html\n.. _`Tutorial`: https://github.com/ray-project/tutorial\n.. _`Blog`: https://medium.com/distributed-computing-with-ray\n.. _`Ray 1.0 Architecture whitepaper`: https://docs.google.com/document/d/1lAy0Owi-vPz2jEqBSaHNQcy2IBSDEHyXNOQZlGuj93c/preview\n.. _`Exoshuffle: large-scale data shuffle in Ray`: https://arxiv.org/abs/2203.05072\n.. _`Ray paper`: https://arxiv.org/abs/1712.05889\n.. _`Ray HotOS paper`: https://arxiv.org/abs/1703.03924\n.. _`RLlib paper`: https://arxiv.org/abs/1712.09381\n.. _`RLlib flow paper`: https://arxiv.org/abs/2011.12719\n.. _`Tune paper`: https://arxiv.org/abs/1807.05118\n\nGetting Involved\n----------------\n\n- `Forum`_: For discussions about development, questions about usage, and feature requests.\n- `GitHub Issues`_: For reporting bugs.\n- `Twitter`_: Follow updates on Twitter.\n- `Slack`_: Join our Slack channel.\n- `Meetup Group`_: Join our meetup group.\n- `StackOverflow`_: For questions about how to use Ray.\n\n.. _`Forum`: https://discuss.ray.io/\n.. _`GitHub Issues`: https://github.com/ray-project/ray/issues\n.. _`StackOverflow`: https://stackoverflow.com/questions/tagged/ray\n.. _`Meetup Group`: https://www.meetup.com/Bay-Area-Ray-Meetup/\n.. _`Twitter`: https://twitter.com/raydistributed\n.. _`Slack`: https://forms.gle/9TSdDYUgxYs8SA9e8\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ray-project/ray", "keywords": "ray distributed parallel machine-learning hyperparameter-tuningreinforcement-learning deep-learning serving python", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "ray", "package_url": "https://pypi.org/project/ray/", "platform": null, "project_url": "https://pypi.org/project/ray/", "project_urls": { "Homepage": "https://github.com/ray-project/ray" }, "release_url": "https://pypi.org/project/ray/1.12.1/", "requires_dist": [ "attrs", "click (>=7.0)", "filelock", "grpcio (<=1.43.0,>=1.28.1)", "jsonschema", "msgpack (<2.0.0,>=1.0.0)", "protobuf (>=3.15.3)", "pyyaml", "aiosignal", "frozenlist", "requests", "virtualenv", "dataclasses ; python_version < \"3.7\"", "numpy (>=1.16) ; python_version < \"3.9\"", "numpy (>=1.19.3) ; python_version >= \"3.9\"", "tabulate ; extra == 'all'", "gpustat (>=1.0.0b1) ; extra == 'all'", "aiohttp-cors ; extra == 'all'", "ray-cpp (==1.12.1) ; extra == 'all'", "fastapi ; extra == 'all'", "pyyaml ; extra == 'all'", "aiorwlock ; extra == 'all'", "smart-open ; extra == 'all'", "prometheus-client (<0.14.0,>=0.7.1) ; extra == 'all'", "kubernetes ; extra == 'all'", "tensorboardX (>=1.9) ; extra == 'all'", "lz4 ; extra == 'all'", "py-spy (>=0.2.0) ; extra == 'all'", "pyarrow (<7.0.0,>=4.0.1) ; extra == 'all'", "gym (<0.22) ; extra == 'all'", "numpy (>=1.19) ; extra == 'all'", "opentelemetry-sdk (==1.1.0) ; extra == 'all'", "opentelemetry-api (==1.1.0) ; extra == 'all'", "fsspec ; extra == 'all'", "pandas ; extra == 'all'", "scipy ; extra == 'all'", "aiohttp (>=3.7) ; extra == 'all'", "opentelemetry-exporter-otlp (==1.1.0) ; extra == 'all'", "starlette ; extra == 'all'", "uvicorn (==0.16.0) ; extra == 'all'", "urllib3 ; extra == 'all'", "dm-tree ; extra == 'all'", "scikit-image ; extra == 'all'", "matplotlib (!=3.4.3) ; extra == 'all'", "colorful ; extra == 'all'", "requests ; extra == 'all'", "opencensus ; extra == 'all'", "ray-cpp (==1.12.1) ; extra == 'cpp'", "pandas ; extra == 'data'", "pyarrow (<7.0.0,>=4.0.1) ; extra == 'data'", "fsspec ; extra == 'data'", "numpy (>=1.19) ; extra == 'data'", "aiohttp (>=3.7) ; extra == 'default'", "aiohttp-cors ; extra == 'default'", "colorful ; extra == 'default'", "py-spy (>=0.2.0) ; extra == 'default'", "requests ; extra == 'default'", "gpustat (>=1.0.0b1) ; extra == 'default'", "opencensus ; extra == 'default'", "prometheus-client (<0.14.0,>=0.7.1) ; extra == 'default'", "smart-open ; extra == 'default'", "kubernetes ; extra == 'k8s'", "urllib3 ; extra == 'k8s'", "opentelemetry-api (==1.1.0) ; extra == 'observability'", "opentelemetry-sdk (==1.1.0) ; extra == 'observability'", "opentelemetry-exporter-otlp (==1.1.0) ; extra == 'observability'", "pandas ; extra == 'rllib'", "tabulate ; extra == 'rllib'", "tensorboardX (>=1.9) ; extra == 'rllib'", "requests ; extra == 'rllib'", "dm-tree ; extra == 'rllib'", "gym (<0.22) ; extra == 'rllib'", "lz4 ; extra == 'rllib'", "matplotlib (!=3.4.3) ; extra == 'rllib'", "scikit-image ; extra == 'rllib'", "pyyaml ; extra == 'rllib'", "scipy ; extra == 'rllib'", "gpustat (>=1.0.0b1) ; extra == 'serve'", "aiohttp (>=3.7) ; extra == 'serve'", "aiohttp-cors ; extra == 'serve'", "starlette ; extra == 'serve'", "uvicorn (==0.16.0) ; extra == 'serve'", "aiorwlock ; extra == 'serve'", "py-spy (>=0.2.0) ; extra == 'serve'", "smart-open ; extra == 'serve'", "colorful ; extra == 'serve'", "requests ; extra == 'serve'", "prometheus-client (<0.14.0,>=0.7.1) ; extra == 'serve'", "opencensus ; extra == 'serve'", "fastapi ; extra == 'serve'", "pandas ; extra == 'tune'", "tabulate ; extra == 'tune'", "tensorboardX (>=1.9) ; extra == 'tune'", "requests ; extra == 'tune'" ], "requires_python": "", "summary": "Ray provides a simple, universal API for building distributed applications.", "version": "1.12.1", "yanked": false, "yanked_reason": null }, "last_serial": 13834949, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "6d2c3841011c6276740719695677acab", "sha256": "95d48c1f67426096f612a1767d42af9fdaef45b132b34999f3a95bb58b5b552f" }, "downloads": -1, "filename": "ray-0.1.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6d2c3841011c6276740719695677acab", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1679327, "upload_time": "2017-06-03T03:05:01", "upload_time_iso_8601": "2017-06-03T03:05:01.138017Z", "url": "https://files.pythonhosted.org/packages/09/a8/63df068d56248bc9c598f3ea7f84d4cd89e8206c11432efbfc54b68533b2/ray-0.1.1-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d4fa0c82c453569afd6666dbf7c3840", "sha256": "3048e569ef412dcc9d9ae5cad11d17b2ef49bfba6d76099e7f2bbed6d24a6287" }, "downloads": -1, "filename": "ray-0.1.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8d4fa0c82c453569afd6666dbf7c3840", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8216966, "upload_time": "2017-06-03T03:05:05", "upload_time_iso_8601": "2017-06-03T03:05:05.602340Z", "url": "https://files.pythonhosted.org/packages/0d/98/d881eb00427eeb03085438cc7caceed59720d26f48e86f0bdb7aa7792ec6/ray-0.1.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75aa85c4db15561d2093404c826ef457", "sha256": "ba4bca67fce821da982098c8221889967e4779bb20680a8788c6ed106433987e" }, "downloads": -1, "filename": "ray-0.1.1-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "75aa85c4db15561d2093404c826ef457", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 8217424, "upload_time": "2017-06-03T03:05:10", "upload_time_iso_8601": "2017-06-03T03:05:10.380610Z", "url": "https://files.pythonhosted.org/packages/4f/d8/26104b87ae00eb978485f888b7b556668493a5b63cbd7320237a56c6cb8e/ray-0.1.1-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdd72071767d0da884bdc511b0633dd1", "sha256": "3d228911016ce5e8dcb8b94e2073749ed12b6907c92db0641585b267f74af261" }, "downloads": -1, "filename": "ray-0.1.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "bdd72071767d0da884bdc511b0633dd1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1679467, "upload_time": "2017-06-03T03:05:14", "upload_time_iso_8601": "2017-06-03T03:05:14.752875Z", "url": "https://files.pythonhosted.org/packages/c4/b8/d031849006050325657f8c6f86e8135f939a96aea00c2c313f4b0568bbea/ray-0.1.1-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47606ab01d858e754edf41f8599feea3", "sha256": "54527f570a3be562051a340cc05a4d4381777ecc8d045c789d6c42a7fed39d24" }, "downloads": -1, "filename": "ray-0.1.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "47606ab01d858e754edf41f8599feea3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 8217868, "upload_time": "2017-06-03T03:05:18", "upload_time_iso_8601": "2017-06-03T03:05:18.971578Z", "url": "https://files.pythonhosted.org/packages/b5/25/4e9de239b34137f404d997409cf62068c4e17b108bfd94d8b795a0412175/ray-0.1.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b75b0a9a43eabd1e084ddf84b54464f9", "sha256": "a0c98e2fd80afe83150d9b494bc7847bafc99781ad49dcff2dafd4b40e5a0ea9" }, "downloads": -1, "filename": "ray-0.1.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "b75b0a9a43eabd1e084ddf84b54464f9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1679464, "upload_time": "2017-06-03T03:05:24", "upload_time_iso_8601": "2017-06-03T03:05:24.332189Z", "url": "https://files.pythonhosted.org/packages/07/4a/d86a8dfab8a8f1e738bfd27ac08a710f172442a9e2d4140714240c92f6ee/ray-0.1.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e15bc024d556e74b8fc4f8de40a0eff", "sha256": "55ad121ec2416bdf0cb66eb8bd79a4ac537e970247011361f8bac97bcf097d6d" }, "downloads": -1, "filename": "ray-0.1.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3e15bc024d556e74b8fc4f8de40a0eff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8218007, "upload_time": "2017-06-03T03:05:28", "upload_time_iso_8601": "2017-06-03T03:05:28.094736Z", "url": "https://files.pythonhosted.org/packages/c3/b0/c3b6d7d1bfbee99321a2263aebe8191ae5a61368f70e1210a4ec80c6fbef/ray-0.1.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee3a97d13bc48d8d264ff1600aeeee8b", "sha256": "634261f9399759b9c197b3e6e4d91cc39f58f232f6ea4e06b7bcd4bef0d203e7" }, "downloads": -1, "filename": "ray-0.1.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ee3a97d13bc48d8d264ff1600aeeee8b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1679479, "upload_time": "2017-06-03T03:05:32", "upload_time_iso_8601": "2017-06-03T03:05:32.586517Z", "url": "https://files.pythonhosted.org/packages/af/c2/b1979f89e4c0e8389245b6f9021e17c108efcc8824170bfbc4f10ac3034e/ray-0.1.1-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe5a9ad4948254f45cfcb3b596a04ac9", "sha256": "177540204310a0905c112a4fdbe7df03c3f8a0430faf12ba7f30da8514cf62e4" }, "downloads": -1, "filename": "ray-0.1.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fe5a9ad4948254f45cfcb3b596a04ac9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8218007, "upload_time": "2017-06-03T03:05:36", "upload_time_iso_8601": "2017-06-03T03:05:36.352219Z", "url": "https://files.pythonhosted.org/packages/20/96/a9ac079450cc8dc14cbb27bab0b7d8965b0e122e402399afe000e8c74875/ray-0.1.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "9ba01f0a0ad702c61933d2236b8a3784", "sha256": "37fc51ccc52031e9b6b23621ae35b546e55a4f4dc2f2439349c3c761ea64b757" }, "downloads": -1, "filename": "ray-0.1.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9ba01f0a0ad702c61933d2236b8a3784", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1712200, "upload_time": "2017-06-27T05:17:19", "upload_time_iso_8601": "2017-06-27T05:17:19.697856Z", "url": "https://files.pythonhosted.org/packages/7f/96/71e1df3a72704166b6a04e2b665543bdd7a3b370421a1e08c634ec1b535e/ray-0.1.2-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9104880bdab1c2ca03ac7f906f56aa61", "sha256": "a1006982854da32e5bc2a723eae949f45dbb0d665ebe0daf05a89d13400525d9" }, "downloads": -1, "filename": "ray-0.1.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9104880bdab1c2ca03ac7f906f56aa61", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8259092, "upload_time": "2017-06-27T05:17:23", "upload_time_iso_8601": "2017-06-27T05:17:23.630118Z", "url": "https://files.pythonhosted.org/packages/d2/d4/cb203950dc793b4e82122521d6c7b37cc06521ca82e594a3ac8a668b85ce/ray-0.1.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9b8fbcb913df853eb1b112c640a8d32", "sha256": "e3e5b1b0f18ec77928c87f6ebf85b3cef1cb1d01277cf0fa00dfd80d5bdeec08" }, "downloads": -1, "filename": "ray-0.1.2-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e9b8fbcb913df853eb1b112c640a8d32", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 8259130, "upload_time": "2017-06-27T05:17:27", "upload_time_iso_8601": "2017-06-27T05:17:27.563095Z", "url": "https://files.pythonhosted.org/packages/5c/b7/2b8d5c6e48ff5e144f3cbb60d718bccc6b135cfbeb554f5f9b66d3ee006d/ray-0.1.2-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b79797786c955b722927ba92c6ae922a", "sha256": "b0603038d21b70334a719c087323448ee763191715220166dac6b1a0fcc55d48" }, "downloads": -1, "filename": "ray-0.1.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "b79797786c955b722927ba92c6ae922a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 1712217, "upload_time": "2017-06-27T05:17:31", "upload_time_iso_8601": "2017-06-27T05:17:31.805433Z", "url": "https://files.pythonhosted.org/packages/9d/b1/bacb1bc99f2ee9b75edef945031426a67d980c68c99b8eb0c16668248fcc/ray-0.1.2-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0fea6c571d2b3f76be428e192c9935b", "sha256": "6b5e611271d784edf2591cbf3283ff7e43763aa0425aa700de9477aac32446a3" }, "downloads": -1, "filename": "ray-0.1.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f0fea6c571d2b3f76be428e192c9935b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 8259650, "upload_time": "2017-06-27T05:17:35", "upload_time_iso_8601": "2017-06-27T05:17:35.481099Z", "url": "https://files.pythonhosted.org/packages/4a/b5/675474a7c18405b04a26c520c25b45708d8e5d4bb36e96198af556c3d5d7/ray-0.1.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d92ff79ca59f157d9887f5ac6548d4d9", "sha256": "90f2c631c9403de90aab62088b4891c23668a935cc6ce410c81ec64ad3804287" }, "downloads": -1, "filename": "ray-0.1.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d92ff79ca59f157d9887f5ac6548d4d9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1712217, "upload_time": "2017-06-27T05:17:40", "upload_time_iso_8601": "2017-06-27T05:17:40.884280Z", "url": "https://files.pythonhosted.org/packages/04/08/9b04de66195095156d095feeb00b41d52a9f6a7af1b23e8f9c540e14a6d9/ray-0.1.2-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fff2a5cdf75307e2febe247053f2d43d", "sha256": "822cefbe08652caf9de74beb553b91574b3c5b7108f8f33da04dd6f3c34cdd1c" }, "downloads": -1, "filename": "ray-0.1.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fff2a5cdf75307e2febe247053f2d43d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8259793, "upload_time": "2017-06-27T05:17:44", "upload_time_iso_8601": "2017-06-27T05:17:44.266890Z", "url": "https://files.pythonhosted.org/packages/62/3b/89fb8f350c334fcd1fb05b96004a4a94e712089f35e5447ab3cdbcf9787a/ray-0.1.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75f7a9c00912e0fbc0f53cec441fe905", "sha256": "e956888fcb9195f669419df027207357a640cfd5e25c5cbfc6700c47b6f714f0" }, "downloads": -1, "filename": "ray-0.1.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "75f7a9c00912e0fbc0f53cec441fe905", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1712221, "upload_time": "2017-06-27T05:17:48", "upload_time_iso_8601": "2017-06-27T05:17:48.503179Z", "url": "https://files.pythonhosted.org/packages/76/09/0ee77a3db997966ad2bd3cb99b2dddb2541c0a08a59c0daa6034e0c1f327/ray-0.1.2-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e8bf116f032d8a783f775e492f218fe", "sha256": "bf070bac6a1ff4880ce40024084fcc1251c1b72c2bf7837becffbd6bf1980902" }, "downloads": -1, "filename": "ray-0.1.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e8bf116f032d8a783f775e492f218fe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8259799, "upload_time": "2017-06-27T05:17:51", "upload_time_iso_8601": "2017-06-27T05:17:51.762358Z", "url": "https://files.pythonhosted.org/packages/cf/90/b739090b0a4feedcdd2bcc00a5ad6dc2bd473fe24608afef28c0920437ba/ray-0.1.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "bda75b52941bf977513b6b391f81ccf7", "sha256": "55aecb801eeab9b0ca815d0fbf1e47993ff5b3c7dd6c3f6e3a5d5075e5632b4c" }, "downloads": -1, "filename": "ray-0.2.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "bda75b52941bf977513b6b391f81ccf7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 4398869, "upload_time": "2017-08-30T05:15:16", "upload_time_iso_8601": "2017-08-30T05:15:16.459005Z", "url": "https://files.pythonhosted.org/packages/09/72/ed26e99e88c26382bc8b6de0010fde841963c4d542040007458f69fd893a/ray-0.2.0-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbdf0b2af591b241dc603dfd865430df", "sha256": "2914807a7a0bb6e97e1a644b9c61fafd5e2131d3d5c9c0d770a1a263828ea2ba" }, "downloads": -1, "filename": "ray-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bbdf0b2af591b241dc603dfd865430df", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 35338890, "upload_time": "2017-08-30T05:15:40", "upload_time_iso_8601": "2017-08-30T05:15:40.839073Z", "url": "https://files.pythonhosted.org/packages/c6/b8/57afe0d8b85839c4216c892e6d37654003b3b1b033ef94365aa96b0520bf/ray-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f3f6c7ff048855162d076a20a72e8ca", "sha256": "ad7a05451d3293665989589cfcb5e6493d3d992e3c4bd47742656d1be3657292" }, "downloads": -1, "filename": "ray-0.2.0-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8f3f6c7ff048855162d076a20a72e8ca", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 35419911, "upload_time": "2017-08-30T05:16:06", "upload_time_iso_8601": "2017-08-30T05:16:06.872336Z", "url": "https://files.pythonhosted.org/packages/55/b7/3062aeec97760c917dcd1865ca8d52342d9695f8e3a8a52d6fc5fa7862c6/ray-0.2.0-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffafaf5b39d2200602a9b30537d5a7f8", "sha256": "7b068cadd05aef27376ca6e752fbcc3917ccb0dc53f645408f9593d52ca5dcf0" }, "downloads": -1, "filename": "ray-0.2.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ffafaf5b39d2200602a9b30537d5a7f8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 4436825, "upload_time": "2017-08-30T05:16:22", "upload_time_iso_8601": "2017-08-30T05:16:22.039306Z", "url": "https://files.pythonhosted.org/packages/75/aa/cfb90e254b2776eada4a00e837d6c372208bcd619bad162b48997e640469/ray-0.2.0-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f2d679aaf9612ce23d82eb013006d77", "sha256": "007ca12b4dbe57ae3fedfb09eb8c4345fd45c8d717dbfc6b63e7ceca00d5f08d" }, "downloads": -1, "filename": "ray-0.2.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3f2d679aaf9612ce23d82eb013006d77", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 35476170, "upload_time": "2017-08-30T05:16:40", "upload_time_iso_8601": "2017-08-30T05:16:40.457620Z", "url": "https://files.pythonhosted.org/packages/c4/6d/6f3b4b1008b340a74dc91892ca38e765d13cc15ceafca6388aa5cb53fdc8/ray-0.2.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0aac2bc7ee00f8744318fad529a443b8", "sha256": "ea64714a6fbced426745f1c022195ce992e233ef68af574736fa880833c68325" }, "downloads": -1, "filename": "ray-0.2.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0aac2bc7ee00f8744318fad529a443b8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 4430419, "upload_time": "2017-08-30T05:16:53", "upload_time_iso_8601": "2017-08-30T05:16:53.468914Z", "url": "https://files.pythonhosted.org/packages/28/cc/aa294d48a96ffd64035bd7088263bc12404c2c1a8117d2aec55fb1f59eee/ray-0.2.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bba167b7ce3da9ea95beb7b7cd5dd92", "sha256": "0089ef5212621e3c3eb0bc06d083d7ab6a0ff77e3cc1e02346fc5e225ffeed77" }, "downloads": -1, "filename": "ray-0.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9bba167b7ce3da9ea95beb7b7cd5dd92", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 35468978, "upload_time": "2017-08-30T05:17:14", "upload_time_iso_8601": "2017-08-30T05:17:14.226682Z", "url": "https://files.pythonhosted.org/packages/d2/47/fa64628ff7c8d6ce2554cf04f6de8ff79bc66cc13f61e8f1f9bcdc477ba9/ray-0.2.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3075d7be83ce3465210fc3ccad3ae7f7", "sha256": "4a34fa35d04a5496e67ea4e5c35b31a49b46d90a4be8b27bf7ce302a3e09ed60" }, "downloads": -1, "filename": "ray-0.2.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "3075d7be83ce3465210fc3ccad3ae7f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 4443973, "upload_time": "2017-08-30T05:17:42", "upload_time_iso_8601": "2017-08-30T05:17:42.821332Z", "url": "https://files.pythonhosted.org/packages/35/b9/3cc9ce282472f92f9067deb6da4992d5d9f2cb424e575a3b07265f3c8e18/ray-0.2.0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66cbfd3960a2346f587e785b0ff6e66f", "sha256": "931434b52b2dc5e033edcbc364465502c98ca04f47c9336361d332936c0fda55" }, "downloads": -1, "filename": "ray-0.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "66cbfd3960a2346f587e785b0ff6e66f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35484650, "upload_time": "2017-08-30T05:18:00", "upload_time_iso_8601": "2017-08-30T05:18:00.488208Z", "url": "https://files.pythonhosted.org/packages/34/19/c8f0bcba0a48132724988df18353aaa5a494ee576c15e1bdbe2a1a2a548d/ray-0.2.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "93ac5b08550a946fec39451ebd2986be", "sha256": "592851743adaf7cb54c53a9a0c774795d3a331209e4e62354ab32fcdc6b99d04" }, "downloads": -1, "filename": "ray-0.2.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "93ac5b08550a946fec39451ebd2986be", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5247740, "upload_time": "2017-10-01T20:50:17", "upload_time_iso_8601": "2017-10-01T20:50:17.040528Z", "url": "https://files.pythonhosted.org/packages/3c/71/5e214ab4d11c61b3d24e604c4910183c91947ad86e6e1816b1f97a377aa5/ray-0.2.1-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eafbeac05341516910a5c09a3d6e9aea", "sha256": "abda6ad17bca93e7546d288ee8eee007e538fc08e9e43d98bda33828d96f2717" }, "downloads": -1, "filename": "ray-0.2.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eafbeac05341516910a5c09a3d6e9aea", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 35552151, "upload_time": "2017-10-01T20:50:47", "upload_time_iso_8601": "2017-10-01T20:50:47.561499Z", "url": "https://files.pythonhosted.org/packages/67/76/3d2f46e0e9472d251f67daed4b50542337f010fc435676690a110d43da37/ray-0.2.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c999ca2c335468bd0d0597ae7202b2eb", "sha256": "e120480315b6b39eec178d8fba75224bb48596cbd803305aa12739675ddbe065" }, "downloads": -1, "filename": "ray-0.2.1-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c999ca2c335468bd0d0597ae7202b2eb", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 35649343, "upload_time": "2017-10-01T20:51:28", "upload_time_iso_8601": "2017-10-01T20:51:28.635609Z", "url": "https://files.pythonhosted.org/packages/51/8c/19c03dd7c4ebc8f3b250e5390f3a3b98c0d4fa91fe045c8f06ea3e1116df/ray-0.2.1-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef693fe775b5d4827d8c61c12afee0e3", "sha256": "141cbad4e99ab9433541429c2ba5f3ca55425cff549c85cf623f5fcfd585c7f1" }, "downloads": -1, "filename": "ray-0.2.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ef693fe775b5d4827d8c61c12afee0e3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5296577, "upload_time": "2017-10-01T20:51:42", "upload_time_iso_8601": "2017-10-01T20:51:42.221101Z", "url": "https://files.pythonhosted.org/packages/0b/c9/0884a172cb1c2f148450d5b58edffa65ed0c35aa0d285b11f5bde4c5729a/ray-0.2.1-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f5bae9b50f79c60a81af845e0d6c2e0", "sha256": "afdd9cbbe9ba009f65b309060c4a7b81005b73eab7fd2bb0727b5ec31dbc509c" }, "downloads": -1, "filename": "ray-0.2.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6f5bae9b50f79c60a81af845e0d6c2e0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 35713277, "upload_time": "2017-10-01T20:52:57", "upload_time_iso_8601": "2017-10-01T20:52:57.811115Z", "url": "https://files.pythonhosted.org/packages/22/eb/d74b5a7e189ec683c40ab506791fe56c1fb5cfff803c97c61d02366185e2/ray-0.2.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f8efd9cf80eabb569aed0074ed3ce34", "sha256": "37c6d80797d595328619e2550512c4c71860979574dbfefe1b03bbe9a00ff5e0" }, "downloads": -1, "filename": "ray-0.2.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8f8efd9cf80eabb569aed0074ed3ce34", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5288880, "upload_time": "2017-10-01T20:53:07", "upload_time_iso_8601": "2017-10-01T20:53:07.261505Z", "url": "https://files.pythonhosted.org/packages/2c/b7/033a7c82de2d0d135038f3d28eb101b94bc9e481a494b498790989de2451/ray-0.2.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "add3ebc95713ff3809e3e742b9bb2ed6", "sha256": "23258d808b9ad76ea55394add7d67077c3ff2246868809c11f79d0a4fc821fce" }, "downloads": -1, "filename": "ray-0.2.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "add3ebc95713ff3809e3e742b9bb2ed6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 35707124, "upload_time": "2017-10-01T20:54:09", "upload_time_iso_8601": "2017-10-01T20:54:09.050703Z", "url": "https://files.pythonhosted.org/packages/ec/0d/404f557423ae5cc0a98b5b05122e42a0ab921744eb7c0accf01de0a0b85b/ray-0.2.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f36bd899053672b482780f10672ea9b0", "sha256": "191a090df52739767d96c72dcd8eda51b52739f1be78db30d64e1204b66de8d2" }, "downloads": -1, "filename": "ray-0.2.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f36bd899053672b482780f10672ea9b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5308299, "upload_time": "2017-10-01T20:54:19", "upload_time_iso_8601": "2017-10-01T20:54:19.602461Z", "url": "https://files.pythonhosted.org/packages/36/dc/673a42e22fa8b10c7ba36e47f138e7c48fac013920171e2b093dca74b1c4/ray-0.2.1-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "360ca3cf3d7f2bb4d03edceceb104121", "sha256": "5a2cdeee0bfe51b3aff5d470971622106a4a0a9a7e28b8f57416dff6e82c2d3d" }, "downloads": -1, "filename": "ray-0.2.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "360ca3cf3d7f2bb4d03edceceb104121", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 35735646, "upload_time": "2017-10-01T20:54:49", "upload_time_iso_8601": "2017-10-01T20:54:49.097734Z", "url": "https://files.pythonhosted.org/packages/69/d4/0c33f5ec2f5417b3b04616602de8ebd191711d675549b7c929bb2a675795/ray-0.2.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "8975ea4e7da96ac31bd2eebd150e248e", "sha256": "3f6f7f94fffef122dcaae8a57fd97f7c4aa35ca03a75d866e2be188f0956eb6a" }, "downloads": -1, "filename": "ray-0.2.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8975ea4e7da96ac31bd2eebd150e248e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5278001, "upload_time": "2017-11-02T05:11:48", "upload_time_iso_8601": "2017-11-02T05:11:48.792813Z", "url": "https://files.pythonhosted.org/packages/49/6d/ea9e49d88aec5ccb3ff3d2af432cf12026441393d3e581e470acce766319/ray-0.2.2-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21ec6d79615c13f2c57ed147af13d02e", "sha256": "7690217341e867dcd78576e76b38a392aed35c7f7f23c5532f04be579909a2fa" }, "downloads": -1, "filename": "ray-0.2.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "21ec6d79615c13f2c57ed147af13d02e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 39195392, "upload_time": "2017-11-02T05:11:59", "upload_time_iso_8601": "2017-11-02T05:11:59.277099Z", "url": "https://files.pythonhosted.org/packages/21/92/d52b586da9a8301204502a828adbddc3cd077c341925bd4d0fc185ef261e/ray-0.2.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a30ab7a4800eb12cd533cfda415c5cca", "sha256": "fc418f48b5ef843a9f352940241b68dc7082acc5c0be1ae80e6789ba47556b6f" }, "downloads": -1, "filename": "ray-0.2.2-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a30ab7a4800eb12cd533cfda415c5cca", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 39301855, "upload_time": "2017-11-02T05:12:12", "upload_time_iso_8601": "2017-11-02T05:12:12.799825Z", "url": "https://files.pythonhosted.org/packages/1a/07/b932d11627a45acbe4bead62993809fca3b736906ef35a5234fd41eca722/ray-0.2.2-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d7575d92db44ffa35796431a7dd2c28", "sha256": "6eb041b5be1598c2905019274178f6d38a9a0df0346ffcf7d600ff01b81292d3" }, "downloads": -1, "filename": "ray-0.2.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "4d7575d92db44ffa35796431a7dd2c28", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5323732, "upload_time": "2017-11-02T05:12:21", "upload_time_iso_8601": "2017-11-02T05:12:21.327953Z", "url": "https://files.pythonhosted.org/packages/b1/ef/4220b363ba55a117fa846a0f9e1ca29f9fd2dd6cc3c21674276ce7eaf061/ray-0.2.2-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09902c83b7b82cad37300ec24151f3cb", "sha256": "56e8461699dce24a3ba64d73d7a4959217588b0a49bd1b6e2826242229e61e30" }, "downloads": -1, "filename": "ray-0.2.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "09902c83b7b82cad37300ec24151f3cb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 39359067, "upload_time": "2017-11-02T05:12:32", "upload_time_iso_8601": "2017-11-02T05:12:32.102512Z", "url": "https://files.pythonhosted.org/packages/8b/9c/4d2ca0784ea332fefbac53d1e3ef4e7c136dd1a5b132b24c6bd8fb0a136d/ray-0.2.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90527304dabfba4f5f6b40aa85c8e7a0", "sha256": "caf96273525f41cc42a687fc4baaf2c4ae2b930c4088dcf0fe3be5062b01f6b7" }, "downloads": -1, "filename": "ray-0.2.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "90527304dabfba4f5f6b40aa85c8e7a0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5318353, "upload_time": "2017-11-02T05:12:39", "upload_time_iso_8601": "2017-11-02T05:12:39.187848Z", "url": "https://files.pythonhosted.org/packages/2f/70/7f2e07da4fad4b4cf8339cf92df8d69031bd06cfbb5d5a41f6cc17d9c834/ray-0.2.2-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d529acc802e5d961f41d05803254cad", "sha256": "16f7acc97552dcedfbe35060e86658515502e39d03e5067a24110ad1a3347055" }, "downloads": -1, "filename": "ray-0.2.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0d529acc802e5d961f41d05803254cad", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 39351213, "upload_time": "2017-11-02T05:12:46", "upload_time_iso_8601": "2017-11-02T05:12:46.975800Z", "url": "https://files.pythonhosted.org/packages/1c/71/129fc97e84b525afe25d2ea814e6cac7fabcf821063ca89557f2018f0d87/ray-0.2.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74fc3bd06aff876d37ed32035d528025", "sha256": "515bb0a9607c0dac409a5b2e7e34cc4acaafc3e53d1b88fa17084e693082bc60" }, "downloads": -1, "filename": "ray-0.2.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "74fc3bd06aff876d37ed32035d528025", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5337684, "upload_time": "2017-11-02T05:12:56", "upload_time_iso_8601": "2017-11-02T05:12:56.780554Z", "url": "https://files.pythonhosted.org/packages/00/94/3ebbd2490e194e79c164769392ecdb5340f0b4fa7b804aa12c5f57c3f5f8/ray-0.2.2-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "826a0550b439732232ecd981ebc2363a", "sha256": "ec2c691e5ae85179305a0a4def65de79b3cf20dd6be39f5894d4ad4b9ca83d47" }, "downloads": -1, "filename": "ray-0.2.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "826a0550b439732232ecd981ebc2363a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 39378854, "upload_time": "2017-11-02T05:13:06", "upload_time_iso_8601": "2017-11-02T05:13:06.186906Z", "url": "https://files.pythonhosted.org/packages/44/a0/4c3d867700ded6b7db4ad78912df9dba0760575e861a777c681b16e53c75/ray-0.2.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "a0c43205e02e0daecac870a80a3bfec0", "sha256": "f194552f951a5e7a7f6926a2e842a1fe106dce0e945ea65921a788a39926a3fd" }, "downloads": -1, "filename": "ray-0.3.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a0c43205e02e0daecac870a80a3bfec0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5561754, "upload_time": "2017-11-28T09:12:13", "upload_time_iso_8601": "2017-11-28T09:12:13.575707Z", "url": "https://files.pythonhosted.org/packages/9e/ba/123d0b33203810f797491dcd4269d0f1b1a5836811787e7e102959704c55/ray-0.3.0-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89cf0461c77347999e3b910367968599", "sha256": "bb243b0d987020fedb979976e2117cfce0d4fe15e777a90ec10d9f90bd8d816e" }, "downloads": -1, "filename": "ray-0.3.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "89cf0461c77347999e3b910367968599", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 40426496, "upload_time": "2017-11-28T09:12:49", "upload_time_iso_8601": "2017-11-28T09:12:49.301255Z", "url": "https://files.pythonhosted.org/packages/9b/f5/996111b2e5ae0393975e2d644890e92ee834569eb05ba83a807b14c0af54/ray-0.3.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb77bdf4f57f86b13a680f04365ce80b", "sha256": "9c2d9f5a26c5c1e5e4431210b9f73acf336bcdfa6d93127c6e8dcf204bbb6265" }, "downloads": -1, "filename": "ray-0.3.0-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cb77bdf4f57f86b13a680f04365ce80b", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 40520886, "upload_time": "2017-11-28T09:13:34", "upload_time_iso_8601": "2017-11-28T09:13:34.790571Z", "url": "https://files.pythonhosted.org/packages/a7/fe/903a6e641537bc6a2e98a8f0bd86f3b35cc5f5d3564fda11410968e8a319/ray-0.3.0-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a597641bda75a101b5b6b37e76c1cefb", "sha256": "9af783c80ddc4c784c58f0a1638753bd2656448ee06281bd3d47fcf46537378b" }, "downloads": -1, "filename": "ray-0.3.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a597641bda75a101b5b6b37e76c1cefb", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5609385, "upload_time": "2017-11-28T09:13:48", "upload_time_iso_8601": "2017-11-28T09:13:48.992749Z", "url": "https://files.pythonhosted.org/packages/53/e2/27b29260887439935e969ffd43975f5fdae81b7eb087dc5ae49515065bd8/ray-0.3.0-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c95cf606840184faf520cdca6e91af19", "sha256": "d86b4a434782fb7dc6e16dcc177c51548c81c4dbb79551bdbe2efb40b836c07a" }, "downloads": -1, "filename": "ray-0.3.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c95cf606840184faf520cdca6e91af19", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 40604067, "upload_time": "2017-11-28T09:14:23", "upload_time_iso_8601": "2017-11-28T09:14:23.591086Z", "url": "https://files.pythonhosted.org/packages/02/4e/44a2edd01b9bb1c558b79a4acc9a658596880e1621960a228fd572fe44b3/ray-0.3.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e8aa95bd4d76e2d604142f400bba6fa", "sha256": "1f5b1225f0f4c17948f67373a70577470d5ac3277e49bb26c85fb886620894e6" }, "downloads": -1, "filename": "ray-0.3.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "7e8aa95bd4d76e2d604142f400bba6fa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5600845, "upload_time": "2017-11-28T09:14:37", "upload_time_iso_8601": "2017-11-28T09:14:37.140566Z", "url": "https://files.pythonhosted.org/packages/72/f3/f963ec3b0e7f1a89f84b13490888b652aa07fe860e666af9329ae0258dbd/ray-0.3.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de66f14175a5675d738415d2af456ef3", "sha256": "f406f79807e89612aa44e29f6601bb686b5835f2c1fdce467f7efae2f330c154" }, "downloads": -1, "filename": "ray-0.3.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "de66f14175a5675d738415d2af456ef3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 40594650, "upload_time": "2017-11-28T09:15:13", "upload_time_iso_8601": "2017-11-28T09:15:13.908183Z", "url": "https://files.pythonhosted.org/packages/d7/99/a8fd02388125bd40438d60ee232f34f5c3b09fcb615cb3f6f1275dae92ad/ray-0.3.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9db378b9314e70fea6bcd96eddc344aa", "sha256": "b8bc5435f7228e4d054b8af69b53df8e28dc32e699962ecd78e109ace3e41b73" }, "downloads": -1, "filename": "ray-0.3.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9db378b9314e70fea6bcd96eddc344aa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5623500, "upload_time": "2017-11-28T09:15:26", "upload_time_iso_8601": "2017-11-28T09:15:26.464227Z", "url": "https://files.pythonhosted.org/packages/9b/99/c5907c501cc088c476240858d77db826eac6a72aec80b04740397c9a05a7/ray-0.3.0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef141409218dcc1f7163c5419ee17ecf", "sha256": "afebe072c22d2b9c63c9583d357480a09fd5da0d4bcbe774df7a5996fbd0b472" }, "downloads": -1, "filename": "ray-0.3.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ef141409218dcc1f7163c5419ee17ecf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 40623486, "upload_time": "2017-11-28T09:16:01", "upload_time_iso_8601": "2017-11-28T09:16:01.835227Z", "url": "https://files.pythonhosted.org/packages/b1/ff/807d74715a486dacbb3860ec1094751ab257dc1967856396cc68f7d7e63e/ray-0.3.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "5c9836c4046a047f4442edb4211e7af9", "sha256": "b43e3bbd4e9185d2e821bcee3c0442574244d2dfb61bf7c19cf753852cafa3a7" }, "downloads": -1, "filename": "ray-0.3.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "5c9836c4046a047f4442edb4211e7af9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5835592, "upload_time": "2018-02-04T23:10:02", "upload_time_iso_8601": "2018-02-04T23:10:02.999148Z", "url": "https://files.pythonhosted.org/packages/cf/34/c4128a59aa2b791d46686d33c20f17012340a19a3a76727c5ff0e8d45341/ray-0.3.1-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6a515a2fff0b8ba5778cb673cbad5ec", "sha256": "bfe2155d02c8d11385d6bdc5c23eab0439130544fdd33f83af0b4d5c1fc2f9c4" }, "downloads": -1, "filename": "ray-0.3.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e6a515a2fff0b8ba5778cb673cbad5ec", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 44434372, "upload_time": "2018-02-04T23:10:39", "upload_time_iso_8601": "2018-02-04T23:10:39.405340Z", "url": "https://files.pythonhosted.org/packages/db/a9/3ad3e659544f6ab0b1d6fc07938f2ad1f2f050f942908213bb33d193da17/ray-0.3.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47a18e6d69216411778e657e5cccee42", "sha256": "c7d7d31b058e1df9ec9da1bbd0af17aee5461377808fbcf80b88317c07fde216" }, "downloads": -1, "filename": "ray-0.3.1-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "47a18e6d69216411778e657e5cccee42", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 44531591, "upload_time": "2018-02-04T23:11:19", "upload_time_iso_8601": "2018-02-04T23:11:19.642404Z", "url": "https://files.pythonhosted.org/packages/01/c8/5b520383346a95b824319e9328b8aee582800e4b30a9e7cf828752d31e7c/ray-0.3.1-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ff4494b0b3c9e80ca6d1caa75970c03", "sha256": "74a61e87eee193328df9e124e3bde466f39afbaf919e1be593cc9a9bb11867c3" }, "downloads": -1, "filename": "ray-0.3.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "5ff4494b0b3c9e80ca6d1caa75970c03", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5884694, "upload_time": "2018-02-04T23:12:27", "upload_time_iso_8601": "2018-02-04T23:12:27.253358Z", "url": "https://files.pythonhosted.org/packages/26/d1/6388a9ef94e94952bea13ae4b06ff1e9b569cd8bb2a8314e45e6b66eaa48/ray-0.3.1-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a89213352314a2bbe26b5afefa5a748", "sha256": "379721a91d471e2606ff638aed64fe6d716a69f3bde4b62eaa7eac37e07da15c" }, "downloads": -1, "filename": "ray-0.3.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4a89213352314a2bbe26b5afefa5a748", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 44623809, "upload_time": "2018-02-04T23:13:03", "upload_time_iso_8601": "2018-02-04T23:13:03.367780Z", "url": "https://files.pythonhosted.org/packages/91/48/2309bc8abf2ccc5cf244d4072c8284fdbbbcb8d446b94f96f4230caec52f/ray-0.3.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0988a9249db9159d7dd8310c15f3b659", "sha256": "52e1cfd07ce42475c01b15e4a0a942956e9786e189ee034c4811ecd06667bdce" }, "downloads": -1, "filename": "ray-0.3.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0988a9249db9159d7dd8310c15f3b659", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5878736, "upload_time": "2018-02-04T23:13:15", "upload_time_iso_8601": "2018-02-04T23:13:15.090072Z", "url": "https://files.pythonhosted.org/packages/4e/c6/6a1a28d79e93c9f01811bfe3b8b0908025480456251067e80d52e5077425/ray-0.3.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed7b4661af9b0c261b59ed33b745b0fc", "sha256": "bccaf1c97de8c0047d56319cd0bb6abcc0c3f7d287e510e0c44c60e5b1d55b7d" }, "downloads": -1, "filename": "ray-0.3.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ed7b4661af9b0c261b59ed33b745b0fc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 44618910, "upload_time": "2018-02-04T23:13:48", "upload_time_iso_8601": "2018-02-04T23:13:48.691968Z", "url": "https://files.pythonhosted.org/packages/ec/51/1196caade06a7e6602bca048aee4fb1cad9d272640f33bed3975a65263d1/ray-0.3.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69ba293fa28e90295436b3dd287da8d3", "sha256": "d3e3a61268ee47c0f7fe6359b9f9c185fe78ff6f8c7693ac75648d31bf2ddd82" }, "downloads": -1, "filename": "ray-0.3.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "69ba293fa28e90295436b3dd287da8d3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5902777, "upload_time": "2018-02-04T23:14:15", "upload_time_iso_8601": "2018-02-04T23:14:15.431483Z", "url": "https://files.pythonhosted.org/packages/39/81/7f48826ea2eb0fac2b7faf5d9a10aa3cfd7552a4af32833a8810bbbbe51d/ray-0.3.1-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e1183e8e4859d2ede619632154d8158", "sha256": "e9c54c1d7cde29f3966b5c593f2284192ef07865645ae36570e1da5be82e8b43" }, "downloads": -1, "filename": "ray-0.3.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e1183e8e4859d2ede619632154d8158", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 44648371, "upload_time": "2018-02-04T23:14:50", "upload_time_iso_8601": "2018-02-04T23:14:50.977233Z", "url": "https://files.pythonhosted.org/packages/27/32/37d379531f3456043edd8379f7291f0facfcb4f871cfd1683336ebf60ee9/ray-0.3.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "a26d1ed732d52539911ead28ac1732c8", "sha256": "5457f403d8af223fcdcfb2beee4e8e4dab51f39eb57e666c33b4cc6c96f9eea7" }, "downloads": -1, "filename": "ray-0.4.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a26d1ed732d52539911ead28ac1732c8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8054632, "upload_time": "2018-03-27T07:14:08", "upload_time_iso_8601": "2018-03-27T07:14:08.131478Z", "url": "https://files.pythonhosted.org/packages/94/3f/fdf9b7fd3dacd7c350aba085a1d13f2e95bd5087576f95f09309bb83cbef/ray-0.4.0-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1bf11f737b9bf5ca61f55e1ad7cc7afa", "sha256": "59999d2fc8d158609d65a3897b74997851c1037acea29af13281f80b52e785f0" }, "downloads": -1, "filename": "ray-0.4.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1bf11f737b9bf5ca61f55e1ad7cc7afa", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 49041016, "upload_time": "2018-03-27T07:14:17", "upload_time_iso_8601": "2018-03-27T07:14:17.730534Z", "url": "https://files.pythonhosted.org/packages/a9/49/d55e9539d9a8fbd822cea65c7f13e553e159eb15493dcb5fbd229f0806ad/ray-0.4.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2085385086c2efad956a61c2a715af34", "sha256": "3159d6f9c98e3590a7116e026ffe40b5d1f0e5cef4c5202725e2907465080b77" }, "downloads": -1, "filename": "ray-0.4.0-cp33-cp33m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2085385086c2efad956a61c2a715af34", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 49045734, "upload_time": "2018-03-27T07:14:28", "upload_time_iso_8601": "2018-03-27T07:14:28.210266Z", "url": "https://files.pythonhosted.org/packages/af/f1/c94a455e59a56d28c245d75e7bd089ca375d51d42e2f5465b8c4f0775f2f/ray-0.4.0-cp33-cp33m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ed51a635e72b1315509b699bc822eb4", "sha256": "669dee41845b8d34b58dce327daa7663fb3dd262707591a914748ce3a34d3599" }, "downloads": -1, "filename": "ray-0.4.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0ed51a635e72b1315509b699bc822eb4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 8114751, "upload_time": "2018-03-27T07:14:32", "upload_time_iso_8601": "2018-03-27T07:14:32.675176Z", "url": "https://files.pythonhosted.org/packages/9c/b4/a6799d64e56e8acbdd9163977a265e66e9f22994d570dee934be8eb0bd48/ray-0.4.0-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "165c2ccded3f3b55c559147f2bf4f3bc", "sha256": "033fe86352134fa1a1cc52d06b0917c7dbdb9b155b179a44711b550407d6c4d5" }, "downloads": -1, "filename": "ray-0.4.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "165c2ccded3f3b55c559147f2bf4f3bc", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 49262158, "upload_time": "2018-03-27T07:14:41", "upload_time_iso_8601": "2018-03-27T07:14:41.262103Z", "url": "https://files.pythonhosted.org/packages/e9/45/3267156d771fd7481c15fc4e6012589b684ff26080ad91be1a72bde5b27a/ray-0.4.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6d7fde5caa5952ed8e105ccffe56634", "sha256": "c8a7e7f751b5726082c565fc11ada7272d44e2f05b374b42eeff38dae674e949" }, "downloads": -1, "filename": "ray-0.4.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "b6d7fde5caa5952ed8e105ccffe56634", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8107842, "upload_time": "2018-03-27T07:14:46", "upload_time_iso_8601": "2018-03-27T07:14:46.617035Z", "url": "https://files.pythonhosted.org/packages/e8/87/2088d30feb58a0f94815de45c0c0561b201b544ffdd19ee28030e570f66b/ray-0.4.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "073dcdfab5510fb18fb99fad28887578", "sha256": "a495fc923e15d53d70a766d3983b5199705d79686ed8f44afb7df544acd83df4" }, "downloads": -1, "filename": "ray-0.4.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "073dcdfab5510fb18fb99fad28887578", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 49257057, "upload_time": "2018-03-27T07:14:57", "upload_time_iso_8601": "2018-03-27T07:14:57.309572Z", "url": "https://files.pythonhosted.org/packages/c9/1a/1a818b565a2d800ccfc3cad37d9703ed4ad4c481f64863b936ad6da36a0c/ray-0.4.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06d047d44beba80a4a439f6d991694cc", "sha256": "947511352e6afa4e2b88f5b8975a061f056d70084539f0a5f8edeb0d362eee76" }, "downloads": -1, "filename": "ray-0.4.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "06d047d44beba80a4a439f6d991694cc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8138507, "upload_time": "2018-03-27T07:15:02", "upload_time_iso_8601": "2018-03-27T07:15:02.447896Z", "url": "https://files.pythonhosted.org/packages/cf/76/6681fefe37634ebad2c6109610a087183d0623cadb272141cf525bb0e6da/ray-0.4.0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb3df2c205753977d4b27c08af2ca9ec", "sha256": "ff0010ab0abbb177bde0437d8b265f3571424523aaa12c58dfb4ce1b1185d92a" }, "downloads": -1, "filename": "ray-0.4.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fb3df2c205753977d4b27c08af2ca9ec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49298354, "upload_time": "2018-03-27T07:15:16", "upload_time_iso_8601": "2018-03-27T07:15:16.127049Z", "url": "https://files.pythonhosted.org/packages/07/58/c2a0980c46a05a234b1f1783da5f3327712f4616066f47ddb768f3280974/ray-0.4.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "0d647b2c4d6f560b2a2932d003b5692f", "sha256": "bc81fb6aa6c5e772f62cd075499146a49611f9a7bc97f206ccbb7d030d60747c" }, "downloads": -1, "filename": "ray-0.5.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0d647b2c4d6f560b2a2932d003b5692f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 9289354, "upload_time": "2018-07-07T06:55:16", "upload_time_iso_8601": "2018-07-07T06:55:16.868869Z", "url": "https://files.pythonhosted.org/packages/bc/8e/46407a60965fd84fe98875dfd17725ae3c876c34bee0b68b9d8f58bfdb88/ray-0.5.0-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76ec136a4f79f053e96093627c83ce0e", "sha256": "e6b40e8522b3695ab5e2e731ce7b080271b64583c2ef7521687bde5dcf93d6a1" }, "downloads": -1, "filename": "ray-0.5.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "76ec136a4f79f053e96093627c83ce0e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 54688906, "upload_time": "2018-07-07T06:55:58", "upload_time_iso_8601": "2018-07-07T06:55:58.027689Z", "url": "https://files.pythonhosted.org/packages/50/16/16da27aa20bf61a885f1675794eeb5be2e10ba0510c91ceb3e582cd26629/ray-0.5.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aceac2b861dd1e7034aed6dec1b5a378", "sha256": "8f8622957dd91a0aca54861d2a9474a66c192e3a363df3d6afd78a4b32d342de" }, "downloads": -1, "filename": "ray-0.5.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "aceac2b861dd1e7034aed6dec1b5a378", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 9294241, "upload_time": "2018-07-07T06:56:08", "upload_time_iso_8601": "2018-07-07T06:56:08.157659Z", "url": "https://files.pythonhosted.org/packages/20/d3/ef0f1066dfbf650b6364bae2b5c479494b08bea6b2a04abc26b945b6f518/ray-0.5.0-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c08eaa47033cb92722e387fea0e4cd1", "sha256": "56f6e6938333e442c9782d3829b83dbb3f0acb7d51a6224426479769d9843065" }, "downloads": -1, "filename": "ray-0.5.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8c08eaa47033cb92722e387fea0e4cd1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 54694466, "upload_time": "2018-07-07T06:56:49", "upload_time_iso_8601": "2018-07-07T06:56:49.453970Z", "url": "https://files.pythonhosted.org/packages/f3/37/6e2ae25a31d08f06613e608620cd1af516378b8509bf2bfb581aa4854559/ray-0.5.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9919e98bcd952c25d390ba679c872b27", "sha256": "02751b0047025276380178a52796a0c44da980016240e40f56b20df897cb946b" }, "downloads": -1, "filename": "ray-0.5.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9919e98bcd952c25d390ba679c872b27", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 9344747, "upload_time": "2018-07-07T06:57:00", "upload_time_iso_8601": "2018-07-07T06:57:00.085402Z", "url": "https://files.pythonhosted.org/packages/2d/3a/5054e2fd228d6c015795224870e177031cd684e344a6a76486f32b225f10/ray-0.5.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c82774bf9f615ba77c23768b9491c4d1", "sha256": "fe8070f4fbb632e3f57a85ab3ffd5fd82f7f2f4dad0577ee2e3431843c6c4817" }, "downloads": -1, "filename": "ray-0.5.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c82774bf9f615ba77c23768b9491c4d1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 54699234, "upload_time": "2018-07-07T06:57:41", "upload_time_iso_8601": "2018-07-07T06:57:41.643803Z", "url": "https://files.pythonhosted.org/packages/87/9b/c43054c27385603fd31cd61ab0e54ad8aa64d913f0f268b5330bc8776649/ray-0.5.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5a6a95adb5c01bad42f5f46875fd871", "sha256": "81398fa01316f233808fbee08b4df154efb747fcb7e3970b134105f2c4bb55c4" }, "downloads": -1, "filename": "ray-0.5.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d5a6a95adb5c01bad42f5f46875fd871", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9301300, "upload_time": "2018-07-07T06:57:51", "upload_time_iso_8601": "2018-07-07T06:57:51.535601Z", "url": "https://files.pythonhosted.org/packages/02/2b/905a5d12a7916ded21b8fec39d4717c6a93315c5eb83ccd155b1d4063376/ray-0.5.0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02e2e23300e0d74f8febe5d9f9365f59", "sha256": "baca9547bae64b83b4eca79950642d0e6de81c74da5c2f2084f09b61f81900fd" }, "downloads": -1, "filename": "ray-0.5.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "02e2e23300e0d74f8febe5d9f9365f59", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 54723779, "upload_time": "2018-07-07T06:58:44", "upload_time_iso_8601": "2018-07-07T06:58:44.121923Z", "url": "https://files.pythonhosted.org/packages/94/40/41bbdf6a66f658b0c998b73d29df35611010a22416f15f944c29061b9c6f/ray-0.5.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "d33e3f3293bd0bb9b74c3898841c6770", "sha256": "dfc9a73463a42273556f361c4b5d292356ee09d493789d1b23d4cecff2729c3c" }, "downloads": -1, "filename": "ray-0.5.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d33e3f3293bd0bb9b74c3898841c6770", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10310213, "upload_time": "2018-08-29T21:42:24", "upload_time_iso_8601": "2018-08-29T21:42:24.672833Z", "url": "https://files.pythonhosted.org/packages/89/f0/17788b3d9165a9d366cd36932c8affa3e2629057d5189d88e1f0de041d40/ray-0.5.2-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5aa94386cb169e86d31c5197a472b8b4", "sha256": "5cc8b1d1376fe889377bfa41625a2832ac1bd150dd8e5988f587d1cbca0dddab" }, "downloads": -1, "filename": "ray-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5aa94386cb169e86d31c5197a472b8b4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 57764124, "upload_time": "2018-08-29T21:42:37", "upload_time_iso_8601": "2018-08-29T21:42:37.218509Z", "url": "https://files.pythonhosted.org/packages/f9/6b/7960fc5e526bdcb5d1ca576581716d4fe216a4d5bbc85a83fc537ed8a114/ray-0.5.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5e85c0263e68ef70d31edc7a7ed3244", "sha256": "b05dac65fbbd73c4fdec702921e8263dcb405eb35fa67200c119be5b5466b974" }, "downloads": -1, "filename": "ray-0.5.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f5e85c0263e68ef70d31edc7a7ed3244", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 10317886, "upload_time": "2018-08-29T21:42:42", "upload_time_iso_8601": "2018-08-29T21:42:42.944196Z", "url": "https://files.pythonhosted.org/packages/7b/e5/62ec1526f6eec93fb26191fbaffd823b950f8e1f839a7cc2a795f63043a4/ray-0.5.2-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a8bce77102fc6d7a40233a2be0acae17", "sha256": "aa915e4e37ae5c7992854da4dee571dfa7715da111862b6dc737989ec8d97b30" }, "downloads": -1, "filename": "ray-0.5.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a8bce77102fc6d7a40233a2be0acae17", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 57771019, "upload_time": "2018-08-29T21:42:59", "upload_time_iso_8601": "2018-08-29T21:42:59.154780Z", "url": "https://files.pythonhosted.org/packages/a2/3f/a3d6ecdd351a20554f6b2d2d9708e20e539ff3663b2be6f097122cdd5c4c/ray-0.5.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46b1a41e8331abbc9bc3c1eb94f256f9", "sha256": "a92b3962467824b1787edb5a07277aec7fc4721f6506ecd3d872037583625bfc" }, "downloads": -1, "filename": "ray-0.5.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "46b1a41e8331abbc9bc3c1eb94f256f9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10293607, "upload_time": "2018-08-29T21:43:05", "upload_time_iso_8601": "2018-08-29T21:43:05.386145Z", "url": "https://files.pythonhosted.org/packages/1c/a3/4dcbb09ea935387a95a1e3ebed3c53ab04ce57fc00a0fd20d9a494592138/ray-0.5.2-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f19b1d4a14c58f8061c8828d6574dfb3", "sha256": "d7ed4cfe6a1c2f80f1358d0096f5e056141fdb64736882ef15982e7b06edc43b" }, "downloads": -1, "filename": "ray-0.5.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f19b1d4a14c58f8061c8828d6574dfb3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 57769078, "upload_time": "2018-08-29T21:43:21", "upload_time_iso_8601": "2018-08-29T21:43:21.614910Z", "url": "https://files.pythonhosted.org/packages/2f/3f/c577cae9c56910b92936bba2ad3a6235c2bd5d84afb66940139e77ecdb56/ray-0.5.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8acb3e0b49a6bed33a1e1fc4b5a4bc40", "sha256": "9fe1cb763f2c61ac1d50fa72d826ae572507e49fbadeb516ce1195fc29f21c80" }, "downloads": -1, "filename": "ray-0.5.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8acb3e0b49a6bed33a1e1fc4b5a4bc40", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10288360, "upload_time": "2018-08-29T21:43:29", "upload_time_iso_8601": "2018-08-29T21:43:29.069336Z", "url": "https://files.pythonhosted.org/packages/02/4d/0c613b0f3db8c34e326d4995cebb6e9c0cc7ba9b6c6c10a388499039c32c/ray-0.5.2-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b387bd91237d928c51a2aaa5521b7f26", "sha256": "a803a76ff9463af7467d4eba4812113fbe1b7cc99e96add12f895de4b544ebc7" }, "downloads": -1, "filename": "ray-0.5.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b387bd91237d928c51a2aaa5521b7f26", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 57798093, "upload_time": "2018-08-29T21:43:37", "upload_time_iso_8601": "2018-08-29T21:43:37.465465Z", "url": "https://files.pythonhosted.org/packages/48/c4/6faa8b99a4ce110b99c441a5c9ffcafd9ed51ddaa0bd603a55dc519abcc8/ray-0.5.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "08062acf6182feb4b0c17d9454755779", "sha256": "c17cb1099fb4fa96c8baf4785e7a19e6e04508f8cc8a2b9300860a5576305dd5" }, "downloads": -1, "filename": "ray-0.5.3-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "08062acf6182feb4b0c17d9454755779", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10064950, "upload_time": "2018-09-28T16:33:14", "upload_time_iso_8601": "2018-09-28T16:33:14.530346Z", "url": "https://files.pythonhosted.org/packages/64/1e/1d19bca2344ba5dfabefd2fadc8566e07ce245c93c8c8166690e0d7e5eb7/ray-0.5.3-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d187d7b305dfe05e399ed98f364b69b5", "sha256": "fdf8a6acb2fe3984c2bcf2d7dee2f9d4e1fcb82aef4c9e7bc3f56238e3017cba" }, "downloads": -1, "filename": "ray-0.5.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d187d7b305dfe05e399ed98f364b69b5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 66394827, "upload_time": "2018-09-28T16:33:33", "upload_time_iso_8601": "2018-09-28T16:33:33.700397Z", "url": "https://files.pythonhosted.org/packages/04/1b/e2ed4f34214fdbb249be32fad608241cee301334c7b4c5e66978c9040bda/ray-0.5.3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34320075daf2da46b6c4fc9545c73645", "sha256": "a03533f18d9995c96015a3b9309ace19f77801761007a1b94eb3c0180062f8b3" }, "downloads": -1, "filename": "ray-0.5.3-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "34320075daf2da46b6c4fc9545c73645", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 10069763, "upload_time": "2018-09-28T16:33:39", "upload_time_iso_8601": "2018-09-28T16:33:39.542436Z", "url": "https://files.pythonhosted.org/packages/e1/35/fc678de16d0334a9858f917d0220ced72b3eb13473c4caa263610648b52e/ray-0.5.3-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b1ae8f1a6dae1d76238a4b332daf7d9", "sha256": "5260d2d4652920a8e67e854dd12d8ee2d24aeb10465a08534b1d2a04069315fc" }, "downloads": -1, "filename": "ray-0.5.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6b1ae8f1a6dae1d76238a4b332daf7d9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 66400092, "upload_time": "2018-09-28T16:34:06", "upload_time_iso_8601": "2018-09-28T16:34:06.221158Z", "url": "https://files.pythonhosted.org/packages/39/25/808c84d7f4715d288be8d29d556e6840722d8374f724a90acdb95eb8bb6f/ray-0.5.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a86740382b5ed2f91cb8ebdeb4ec1c4", "sha256": "288e74b7c8dafb40e9980656c5603dad572e403cdceb2bfa845c7ea16ef817e7" }, "downloads": -1, "filename": "ray-0.5.3-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9a86740382b5ed2f91cb8ebdeb4ec1c4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10045163, "upload_time": "2018-09-28T16:34:11", "upload_time_iso_8601": "2018-09-28T16:34:11.812330Z", "url": "https://files.pythonhosted.org/packages/b6/44/d96c13b066cdbae6ec7a89d5a1a11cbeaf9fa95809ed326f58637f3bf10c/ray-0.5.3-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd152046ade2e1934f80a577dccccaab", "sha256": "414e80abbe883e4faca2937da950e0c2c8ea8a9869eeac899c5303a258bba079" }, "downloads": -1, "filename": "ray-0.5.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dd152046ade2e1934f80a577dccccaab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 66398335, "upload_time": "2018-09-28T16:34:27", "upload_time_iso_8601": "2018-09-28T16:34:27.415514Z", "url": "https://files.pythonhosted.org/packages/93/fa/74045cc1725630b6dcc02b435fbb6bb5305adb310755093bf0990a7157b9/ray-0.5.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "960af6adc7840d827995ddc2626eb31d", "sha256": "fc4a15ee8160ace13a554a97418b35ccb45f488ba0f50d9dd146ec2ae7612eea" }, "downloads": -1, "filename": "ray-0.5.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "960af6adc7840d827995ddc2626eb31d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10081086, "upload_time": "2018-09-28T16:34:34", "upload_time_iso_8601": "2018-09-28T16:34:34.510947Z", "url": "https://files.pythonhosted.org/packages/bd/57/0f0b55b1ab0324ee4472ac20773413c017c049cdad2ccf94f8404e50be79/ray-0.5.3-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d2217617e3a7bbb0e90994d83aa265b", "sha256": "1cc221d465ea1e702c091fd89ba88e87b7fd99c3fceb33bbd2d570f7ec5c3091" }, "downloads": -1, "filename": "ray-0.5.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2d2217617e3a7bbb0e90994d83aa265b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 66427042, "upload_time": "2018-09-28T16:34:53", "upload_time_iso_8601": "2018-09-28T16:34:53.258063Z", "url": "https://files.pythonhosted.org/packages/1b/ba/033577098a95e8640a72bce6472f6090b096ce185e61d6d3b9353d9d1610/ray-0.5.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "8a5af518a8619dbf690064c12a745189", "sha256": "3978f98e33e970d794eaf2daa22517601a77df17f7d304634c62e3fb950d8ca3" }, "downloads": -1, "filename": "ray-0.6.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8a5af518a8619dbf690064c12a745189", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 9493832, "upload_time": "2018-12-01T22:00:43", "upload_time_iso_8601": "2018-12-01T22:00:43.105289Z", "url": "https://files.pythonhosted.org/packages/ea/64/0e931da28e23ae36e9a03e5b51f84003a7e6c156673e57a718d408c679c8/ray-0.6.0-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0471ac06ae3b8b0720c9bcf390fad6a", "sha256": "925e009ecfd528b0d7fc207497a1dca72a5da8a99e351fde767709f3583b7467" }, "downloads": -1, "filename": "ray-0.6.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f0471ac06ae3b8b0720c9bcf390fad6a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 60312518, "upload_time": "2018-12-01T22:01:28", "upload_time_iso_8601": "2018-12-01T22:01:28.287019Z", "url": "https://files.pythonhosted.org/packages/5a/c4/fb832593cb08e1163ea4532b0b658dbfa5dfa214ff373535eb103a0be54b/ray-0.6.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86ea3364a40e913079d15995b674a300", "sha256": "8973f36af8dfc70483bad80828e5c28a41b6eee2026cbadb1a8b110177d3e189" }, "downloads": -1, "filename": "ray-0.6.0-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "86ea3364a40e913079d15995b674a300", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 9507291, "upload_time": "2018-12-01T22:01:44", "upload_time_iso_8601": "2018-12-01T22:01:44.616773Z", "url": "https://files.pythonhosted.org/packages/8b/b7/87fd0f080b6937068a5f84a5031d32ecfd076971fc9b8857fe8e01f5c4ff/ray-0.6.0-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1fd956445f6ee9da216fbeee8f68f7c", "sha256": "9165b35bccef149c6178b1d7a4ef69151f699b9ad9ba9e0e033f5fd84f3b6c9f" }, "downloads": -1, "filename": "ray-0.6.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b1fd956445f6ee9da216fbeee8f68f7c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 60318690, "upload_time": "2018-12-01T22:02:29", "upload_time_iso_8601": "2018-12-01T22:02:29.277728Z", "url": "https://files.pythonhosted.org/packages/c7/d0/966a8fcb9c39c3bda31729189bb7ad4676a439043294ef0bf2884a0fe55d/ray-0.6.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7949a0a5cef36562b057f2df75a6525", "sha256": "d02d525481b65b00e32bd4c3fab9bc41ade4ac0643fc9acc702423340e7fcc18" }, "downloads": -1, "filename": "ray-0.6.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d7949a0a5cef36562b057f2df75a6525", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 9481037, "upload_time": "2018-12-01T22:02:39", "upload_time_iso_8601": "2018-12-01T22:02:39.306251Z", "url": "https://files.pythonhosted.org/packages/dc/f5/e1f100c5e3cff39baa1f28d95ccc5d468d0cfd27ef3d1cea8fab14b77d68/ray-0.6.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d73ed7563f7142f0645e6823e5a18d3d", "sha256": "e4d6f3fa45c6c2f0b17c132a83cf97c60865aadca9dde70db880b6158d92d690" }, "downloads": -1, "filename": "ray-0.6.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d73ed7563f7142f0645e6823e5a18d3d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 60319036, "upload_time": "2018-12-01T22:03:24", "upload_time_iso_8601": "2018-12-01T22:03:24.457225Z", "url": "https://files.pythonhosted.org/packages/24/a7/f2af8ac7709fb7735e785601fa0b42f84d6abbd1691e3b5343b50c457f21/ray-0.6.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc49738687547e6325b1a36cc1eca633", "sha256": "822620989969aa855a0a04d35568a8b9a98ba21ef33c2b0dd96c893ed194a306" }, "downloads": -1, "filename": "ray-0.6.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "fc49738687547e6325b1a36cc1eca633", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 9520143, "upload_time": "2018-12-01T22:03:34", "upload_time_iso_8601": "2018-12-01T22:03:34.563725Z", "url": "https://files.pythonhosted.org/packages/7f/50/4753988749ce7b421777749593680de723d32ea13e878232426acdd3f931/ray-0.6.0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a584776e2005d299f7f3b981bee4e459", "sha256": "2e64178a079842b853b1b188e3cab8047015281de9ef404fede38c4a92a3834a" }, "downloads": -1, "filename": "ray-0.6.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a584776e2005d299f7f3b981bee4e459", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 60347438, "upload_time": "2018-12-01T22:04:19", "upload_time_iso_8601": "2018-12-01T22:04:19.857427Z", "url": "https://files.pythonhosted.org/packages/35/c2/88c8c2303b4f49fbdb35fa9152cca010ddec2e8cd9f1641c5e226c592973/ray-0.6.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d00b32f9dc79d966244a055bb4b3456", "sha256": "a7ec978a7d94698b130115b2898373d3dcda48962572303791fd518ddcda4ced" }, "downloads": -1, "filename": "ray-0.6.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2d00b32f9dc79d966244a055bb4b3456", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 9489006, "upload_time": "2018-12-01T22:04:30", "upload_time_iso_8601": "2018-12-01T22:04:30.266769Z", "url": "https://files.pythonhosted.org/packages/4a/44/6cef3d2d98fbba4dab8b53f9fe3b4b9cecc1d15cd5435d74be818c5c9564/ray-0.6.0-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1491fef46bdf23add3bfa364c99e6a01", "sha256": "71a7c5eadd939b6bcbc475905effa3ec8f4ef8ebec203ca01ced29536000dcb6" }, "downloads": -1, "filename": "ray-0.6.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1491fef46bdf23add3bfa364c99e6a01", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 60363966, "upload_time": "2018-12-01T22:05:15", "upload_time_iso_8601": "2018-12-01T22:05:15.334941Z", "url": "https://files.pythonhosted.org/packages/95/86/33a391c4752e1f91a7db7c888c0acad1cb91e506cc402911502b876d37fa/ray-0.6.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "318ae9212d6c91c763ff8306d7fa95fe", "sha256": "8a40607353f88c85855f78796d371768f0c66b4a47b7f300055d86c679b44cf8" }, "downloads": -1, "filename": "ray-0.6.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "318ae9212d6c91c763ff8306d7fa95fe", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10721986, "upload_time": "2018-12-24T07:59:20", "upload_time_iso_8601": "2018-12-24T07:59:20.627357Z", "url": "https://files.pythonhosted.org/packages/c5/d4/695447c74e8d180b033ca565f049757a4204cca5ef8c7e519f6bec3d490c/ray-0.6.1-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35f8de7ff0771cf58387a4cf1fffe8a3", "sha256": "237bba08e52f2d31b1bbd5baf13e6d20698ea8ace46dee9c314af615f74a47d8" }, "downloads": -1, "filename": "ray-0.6.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "35f8de7ff0771cf58387a4cf1fffe8a3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 70351784, "upload_time": "2018-12-24T07:59:32", "upload_time_iso_8601": "2018-12-24T07:59:32.100784Z", "url": "https://files.pythonhosted.org/packages/cd/73/b7bafb10fdbbc64a01c5558490506f133f195679d1a35bacb7367433098c/ray-0.6.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38ec4cef1a1bf6b997169c13a33f4be0", "sha256": "4010db9dae6c76df0df553df6d856ae2b345fdbe801b440e25316ea686925f5f" }, "downloads": -1, "filename": "ray-0.6.1-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "38ec4cef1a1bf6b997169c13a33f4be0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 10716198, "upload_time": "2018-12-24T07:59:37", "upload_time_iso_8601": "2018-12-24T07:59:37.300432Z", "url": "https://files.pythonhosted.org/packages/17/8a/53d618c99f2f1a3425650ca81a2f7921f9bf009e98cd919430fcd711ff94/ray-0.6.1-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f4c86d74975ba5af5a2af896f86a999", "sha256": "2591e996d0ccdb7149706ac6a6027495d149ddad5f3aef2ce7c70cd2b09398ac" }, "downloads": -1, "filename": "ray-0.6.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6f4c86d74975ba5af5a2af896f86a999", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 70352994, "upload_time": "2018-12-24T07:59:48", "upload_time_iso_8601": "2018-12-24T07:59:48.240002Z", "url": "https://files.pythonhosted.org/packages/1f/e0/74fbe2d017493ccb226e528a8f2d9b7ddabc5c9d7c48576d09ea5f0caa35/ray-0.6.1-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39a6893cdad34e74a216915a1d203b00", "sha256": "a32179d3310f6315bd11ff65ae2c625a99745b822be60a88e8acdb7108f5e609" }, "downloads": -1, "filename": "ray-0.6.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "39a6893cdad34e74a216915a1d203b00", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 10745572, "upload_time": "2018-12-24T07:59:54", "upload_time_iso_8601": "2018-12-24T07:59:54.841679Z", "url": "https://files.pythonhosted.org/packages/9a/8e/4c8fcbac202420a979c2e21fa98c0335a0cd6689f6ca92c0c16290b25685/ray-0.6.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cd21217cf272969d5a211ff3cf34fec", "sha256": "867631111115cad5458e8588b1f03741433e37768ad3248171a3118ee8277585" }, "downloads": -1, "filename": "ray-0.6.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7cd21217cf272969d5a211ff3cf34fec", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 70359926, "upload_time": "2018-12-24T08:00:09", "upload_time_iso_8601": "2018-12-24T08:00:09.306212Z", "url": "https://files.pythonhosted.org/packages/8d/67/db9e23f057d5aaa90d02a8c650516d1667755aecee92d9d0444968d544eb/ray-0.6.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3719bc8e7a024f6b5d7f1e177907d27f", "sha256": "fef2aeac398b51de8f59e036f110f6b6c2eb9549bec49253052c47f2b81b96b4" }, "downloads": -1, "filename": "ray-0.6.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "3719bc8e7a024f6b5d7f1e177907d27f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 10799973, "upload_time": "2018-12-24T08:00:16", "upload_time_iso_8601": "2018-12-24T08:00:16.064734Z", "url": "https://files.pythonhosted.org/packages/8f/ac/e791609692be02eeed6d0860665c73b9deee0638574fe2956abf24cc4e22/ray-0.6.1-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c86e3733adc7f51c7778cfd740a2112c", "sha256": "fda1b6aebb2d8e78bde0ce4c042c177d5d809211160da7eba65561435671934f" }, "downloads": -1, "filename": "ray-0.6.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c86e3733adc7f51c7778cfd740a2112c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 70397679, "upload_time": "2018-12-24T08:00:28", "upload_time_iso_8601": "2018-12-24T08:00:28.441138Z", "url": "https://files.pythonhosted.org/packages/16/17/ab5ca836e8bf71f949e29512c88f4a7c95173a44a3804e389afdf2d4da82/ray-0.6.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f410a9b4ace23bbd191e533ccf25a35", "sha256": "a709e718318e3174e0d7d98d06f0c4f726faa24c20ab4b5ac8f15873d1396c2d" }, "downloads": -1, "filename": "ray-0.6.1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8f410a9b4ace23bbd191e533ccf25a35", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 10749572, "upload_time": "2018-12-24T08:00:33", "upload_time_iso_8601": "2018-12-24T08:00:33.732082Z", "url": "https://files.pythonhosted.org/packages/06/c0/4a54626699fa5acfbb9823cb501d55430530605a430dff9d1d48af537d5c/ray-0.6.1-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e70fb6593e076af00d0eba8cd2e46a12", "sha256": "7f21c506b1185b3d7b745b049c954021c904727bd82e65f04767ed0dc7c44b99" }, "downloads": -1, "filename": "ray-0.6.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e70fb6593e076af00d0eba8cd2e46a12", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 70450436, "upload_time": "2018-12-24T08:00:56", "upload_time_iso_8601": "2018-12-24T08:00:56.897183Z", "url": "https://files.pythonhosted.org/packages/9d/59/0aff535d9affd223bc6b32cb69416a9d42f3490f71ddccf0a0781e883c39/ray-0.6.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "6effbc47cd2f5952dc6c88d06290ca78", "sha256": "11f3aa8642648fd2e58c68d752809bce6bb9d56a9f4df69f84d0ae6a7d4bf0cd" }, "downloads": -1, "filename": "ray-0.6.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6effbc47cd2f5952dc6c88d06290ca78", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10977342, "upload_time": "2019-01-17T08:50:25", "upload_time_iso_8601": "2019-01-17T08:50:25.146277Z", "url": "https://files.pythonhosted.org/packages/30/bc/a647a1e18584bbcff7c5e8788bc485e63a73a4f098f08585db4f4a29c5d1/ray-0.6.2-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ef82a3d64deb7f0451fa58f7805925c", "sha256": "66d21bcaf3309e35bbd59af2dc52fc064c0b5c269904eb721d26bbe1781c353a" }, "downloads": -1, "filename": "ray-0.6.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9ef82a3d64deb7f0451fa58f7805925c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 72980512, "upload_time": "2019-01-17T08:51:41", "upload_time_iso_8601": "2019-01-17T08:51:41.938602Z", "url": "https://files.pythonhosted.org/packages/79/76/379b943dd2f2c86c522ed4b4b9a14c8e64c00646e2f759b973f9539d7a52/ray-0.6.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "673a3624a7786b56048cfb3cc1aa2ed7", "sha256": "3ffcd71481722776862cb58e61f7778212e0e426059d5f92ac42ad1362a8c724" }, "downloads": -1, "filename": "ray-0.6.2-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "673a3624a7786b56048cfb3cc1aa2ed7", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 10972650, "upload_time": "2019-01-17T08:51:59", "upload_time_iso_8601": "2019-01-17T08:51:59.339920Z", "url": "https://files.pythonhosted.org/packages/67/03/ee3206a064d205c7348fa91d84d43dc0c024cf761db2c53c4ce77111cece/ray-0.6.2-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8270871b799b1a0f5d7553996b459d40", "sha256": "d62b1ea5074ddab56dcc21dbcd030c2267912af8b194806460770f31750d00c5" }, "downloads": -1, "filename": "ray-0.6.2-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8270871b799b1a0f5d7553996b459d40", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 72980896, "upload_time": "2019-01-17T08:53:29", "upload_time_iso_8601": "2019-01-17T08:53:29.098857Z", "url": "https://files.pythonhosted.org/packages/09/0a/00f8fffb555a914d3afa7383427bb3cc9dcd90e4b516a7c9f068f3b1141b/ray-0.6.2-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2e249aace6b02276f620fa35e085c24", "sha256": "5629d916bc7ad9532e740f52d489ec6469ac31819d76ea7ec62a582ac5423a2b" }, "downloads": -1, "filename": "ray-0.6.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "b2e249aace6b02276f620fa35e085c24", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11001478, "upload_time": "2019-01-17T08:53:51", "upload_time_iso_8601": "2019-01-17T08:53:51.106771Z", "url": "https://files.pythonhosted.org/packages/82/3f/5daab44e53904236231c14708eb5d34fbd83ad3c0480eb4c78c98726fba0/ray-0.6.2-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "888b0c45938c96b01524c1677b5e4b2f", "sha256": "24b27cba1d98676ef0c65842aac49d6b1c4af0e0810b09d0afb4553bcbe8ec1a" }, "downloads": -1, "filename": "ray-0.6.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "888b0c45938c96b01524c1677b5e4b2f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 72991509, "upload_time": "2019-01-17T08:55:00", "upload_time_iso_8601": "2019-01-17T08:55:00.937089Z", "url": "https://files.pythonhosted.org/packages/18/0b/8465ac3b3c7b9de359f280c7b4fffe6324542d5a459d1415e78b743eb9fd/ray-0.6.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe96100ea6fddb87fa23813542e15213", "sha256": "e051f08bca21aa186bbbb321843141e295999183dd81a5f0859f914d135d12bc" }, "downloads": -1, "filename": "ray-0.6.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "fe96100ea6fddb87fa23813542e15213", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11055766, "upload_time": "2019-01-17T08:55:16", "upload_time_iso_8601": "2019-01-17T08:55:16.742957Z", "url": "https://files.pythonhosted.org/packages/b1/d6/8ab793949f18a3d55166881e598308c8f9cd62369d60da26d1dbc45017ff/ray-0.6.2-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec55c88aa749faf3aaca0d8d54c655d8", "sha256": "46cad0e4e8894f8a08f0847151b90ec6a1296772c522da0fcfc7cab8a816d7cb" }, "downloads": -1, "filename": "ray-0.6.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ec55c88aa749faf3aaca0d8d54c655d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 73028406, "upload_time": "2019-01-17T08:56:23", "upload_time_iso_8601": "2019-01-17T08:56:23.070584Z", "url": "https://files.pythonhosted.org/packages/4a/57/05e2ccf236e0b05b5d2831e79486e84b4eeadce68e8927ee338c61511568/ray-0.6.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31003ba34f0b4a2dceb9d0749011dab8", "sha256": "5f28cfa970cb8ac0e2ce1b39231cf195804195b8d1e8c3ccb8e548565d10995e" }, "downloads": -1, "filename": "ray-0.6.2-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "31003ba34f0b4a2dceb9d0749011dab8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11006985, "upload_time": "2019-01-17T08:56:38", "upload_time_iso_8601": "2019-01-17T08:56:38.179446Z", "url": "https://files.pythonhosted.org/packages/95/eb/3a7b84ceb47fbf9dc0cf210680d881fda7c87fc705beb8ac51a3a81c9a16/ray-0.6.2-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c3661a921d98495745fcfb8d7e98d73", "sha256": "e983c3be393e909f8cccf7a35c5f8ec0207153430767df97be3ecee8020776df" }, "downloads": -1, "filename": "ray-0.6.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2c3661a921d98495745fcfb8d7e98d73", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 73108029, "upload_time": "2019-01-17T08:57:41", "upload_time_iso_8601": "2019-01-17T08:57:41.942826Z", "url": "https://files.pythonhosted.org/packages/c0/76/fa6edfc8d7fce5723261b6239dd22c67fbafa83c2043edef75c105558165/ray-0.6.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "044323904e9f5a20f780157917cb5eb4", "sha256": "49f73b8e8ab38e44133f4cd4037b115b0c57c6b04b16303393260945232c584e" }, "downloads": -1, "filename": "ray-0.6.3-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "044323904e9f5a20f780157917cb5eb4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11311104, "upload_time": "2019-02-07T07:46:32", "upload_time_iso_8601": "2019-02-07T07:46:32.357942Z", "url": "https://files.pythonhosted.org/packages/ed/95/702b1e6c5a80833c90c26e3625f14e306e08f2ec42400c017e2ff64a3d87/ray-0.6.3-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14d7dd6832b93140cb07187a00295666", "sha256": "3849e43d88e8a7e039b541f6f26bc75a1f6fba933977701303aa610543cbda68" }, "downloads": -1, "filename": "ray-0.6.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "14d7dd6832b93140cb07187a00295666", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 73997391, "upload_time": "2019-02-07T07:47:30", "upload_time_iso_8601": "2019-02-07T07:47:30.018203Z", "url": "https://files.pythonhosted.org/packages/f2/2e/b08919d4511700eb8a1f8e75416b749ebb1dc768d82e133f4a430d2a71da/ray-0.6.3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ea320c1c07f54614aa66b4dad06524c", "sha256": "c7b526e23c6881e5ba4a53d7911ec82352e2d3d555c7be8ea64f14c01eebc5e2" }, "downloads": -1, "filename": "ray-0.6.3-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "6ea320c1c07f54614aa66b4dad06524c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 11307895, "upload_time": "2019-02-07T07:47:44", "upload_time_iso_8601": "2019-02-07T07:47:44.438162Z", "url": "https://files.pythonhosted.org/packages/93/65/d1cf8e5bb7e06ad02caa94d417b6235007481ee386af8a80599b132003b8/ray-0.6.3-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6b8931923e7c9cfd1aa42eaa33f8781", "sha256": "ce20b5a2a7d003261040cb60ff2b53c9838529cf15b466e62caef80251f1f043" }, "downloads": -1, "filename": "ray-0.6.3-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c6b8931923e7c9cfd1aa42eaa33f8781", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 74020091, "upload_time": "2019-02-07T07:48:45", "upload_time_iso_8601": "2019-02-07T07:48:45.270017Z", "url": "https://files.pythonhosted.org/packages/6a/08/a4aeb4c59fa397e47624e2518d945176c47a6e39a23bbccb32549cf9f7a8/ray-0.6.3-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24e03eeb6b3f3cbdccf9adaca4415743", "sha256": "ebd150c9205b458bdf42233dc5dcea7dd7b8a42992d59201ec996bc5c51a9a5a" }, "downloads": -1, "filename": "ray-0.6.3-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "24e03eeb6b3f3cbdccf9adaca4415743", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11341961, "upload_time": "2019-02-07T07:48:59", "upload_time_iso_8601": "2019-02-07T07:48:59.823719Z", "url": "https://files.pythonhosted.org/packages/e3/37/3d8d6770c56677471d162c21b3e3f32820dbddfce8fa6e1b1cdd5c841a48/ray-0.6.3-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0482aa4cf4cab63cf55865cec9e5f293", "sha256": "786bc8a41f03646f3faf7e9a9056db5fdd99cd7e96be3a2b8585aa684a0bd301" }, "downloads": -1, "filename": "ray-0.6.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0482aa4cf4cab63cf55865cec9e5f293", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 74036310, "upload_time": "2019-02-07T07:49:58", "upload_time_iso_8601": "2019-02-07T07:49:58.923933Z", "url": "https://files.pythonhosted.org/packages/78/45/1cf5e341ddf515a78ddebedd08c38a5cb488f33b1489bc31e42c67af9c17/ray-0.6.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5557a92f5a6e9f2f170479fb05544812", "sha256": "5e8c280e2b9cd16a353ab842dc4790c7e9fbd803fef0d04b3bd87ceba7ecb7a2" }, "downloads": -1, "filename": "ray-0.6.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "5557a92f5a6e9f2f170479fb05544812", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11399241, "upload_time": "2019-02-07T07:50:11", "upload_time_iso_8601": "2019-02-07T07:50:11.748573Z", "url": "https://files.pythonhosted.org/packages/5f/0c/484c9364527b26dbc433daa607e9292a928f4b1d01ff7f5a1a0598969b67/ray-0.6.3-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf8b8fc8255cf76c4e2efc1b048d7824", "sha256": "51d97782b29970770c54c9b0ebe92a48fe340c650f4872484f97ce915cde5a49" }, "downloads": -1, "filename": "ray-0.6.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bf8b8fc8255cf76c4e2efc1b048d7824", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 74081213, "upload_time": "2019-02-07T07:51:08", "upload_time_iso_8601": "2019-02-07T07:51:08.414319Z", "url": "https://files.pythonhosted.org/packages/74/d1/57b64646d5d8d7527754e97a9ba9d3e7778ba714040c21c1264fcacf5c0a/ray-0.6.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db680e9a0bd959bb12396ebc32fb569d", "sha256": "fed7508912ee7f13e69cfb28f245e4bd33d79b250bb8c4618456ab91fb4fa351" }, "downloads": -1, "filename": "ray-0.6.3-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "db680e9a0bd959bb12396ebc32fb569d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11344277, "upload_time": "2019-02-07T07:51:22", "upload_time_iso_8601": "2019-02-07T07:51:22.522640Z", "url": "https://files.pythonhosted.org/packages/19/0b/10a098a8d8faad29f9847eaa281780c693a253f6e97bb7daef8dfbccdcb9/ray-0.6.3-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "338c256dd9d2ea7d9ad96fcfc2dbc025", "sha256": "55a7da5530fbd4c4327fd565702792ec2ccfbfffcd73bf8da3dc0ed394c98e25" }, "downloads": -1, "filename": "ray-0.6.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "338c256dd9d2ea7d9ad96fcfc2dbc025", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 74099280, "upload_time": "2019-02-07T07:52:19", "upload_time_iso_8601": "2019-02-07T07:52:19.871650Z", "url": "https://files.pythonhosted.org/packages/61/bc/266265dcd493c4b5f8ea6d541db2023d7725d0f0c6544bfe853156a90910/ray-0.6.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "61ed02deaf8901b9e31d189bb0acd694", "sha256": "136bd4acf8fdb9001e5356bfe3533082dbe679a77ead9e81c13b8911c9665a23" }, "downloads": -1, "filename": "ray-0.6.4-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "61ed02deaf8901b9e31d189bb0acd694", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11829728, "upload_time": "2019-03-06T00:56:09", "upload_time_iso_8601": "2019-03-06T00:56:09.865630Z", "url": "https://files.pythonhosted.org/packages/8a/00/62d7d5f5c2f22afcbe4425c83d13a59882b9a4be9b34171472cc6c697b1e/ray-0.6.4-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a935d13ed8bbae044596c5b7bca27d97", "sha256": "2c4e26cf505877effe571f64d1b810a6f886e8cc3baee01bc6606e1a38c2722f" }, "downloads": -1, "filename": "ray-0.6.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a935d13ed8bbae044596c5b7bca27d97", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 74884494, "upload_time": "2019-03-06T00:56:25", "upload_time_iso_8601": "2019-03-06T00:56:25.408645Z", "url": "https://files.pythonhosted.org/packages/31/00/3bfa442d6a417fa4504a5b20baefeed292393f684ebf72f86130a9733e04/ray-0.6.4-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef96f200d48ec38bb1a539cdc51c7c55", "sha256": "0101edd6a122d623a02b4d8432c19ab65e8a30e32f1e10dbe3372b0e69cf3846" }, "downloads": -1, "filename": "ray-0.6.4-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ef96f200d48ec38bb1a539cdc51c7c55", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 11827750, "upload_time": "2019-03-06T00:56:31", "upload_time_iso_8601": "2019-03-06T00:56:31.913369Z", "url": "https://files.pythonhosted.org/packages/8c/b2/8c971affc88481e8130f5b956af2d609e1d8897125f35139047d82b216d7/ray-0.6.4-cp34-cp34m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cccd655764d7cf21d57a8f8b32a56aa9", "sha256": "ee1eab94a2316701180eb642c346695b2f36d3611edeeb01847021c87c60ec66" }, "downloads": -1, "filename": "ray-0.6.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cccd655764d7cf21d57a8f8b32a56aa9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 74904807, "upload_time": "2019-03-06T00:56:47", "upload_time_iso_8601": "2019-03-06T00:56:47.256376Z", "url": "https://files.pythonhosted.org/packages/a8/18/4475568d815784a0540f0fb1098b6d2ce36484ff8698bfb0207b8b46f240/ray-0.6.4-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9561f09f9eb21a9058267b7c2df22dc8", "sha256": "67d8f0f3b415c6e88a26efb03f20b861f25e1871f0c1f5cf5690a4a1083d3c4c" }, "downloads": -1, "filename": "ray-0.6.4-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9561f09f9eb21a9058267b7c2df22dc8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 11862571, "upload_time": "2019-03-06T00:56:54", "upload_time_iso_8601": "2019-03-06T00:56:54.218803Z", "url": "https://files.pythonhosted.org/packages/cb/99/a93f52916cb513079bd1bab6c8468f721c7b410ff462720d0a3a254bcc14/ray-0.6.4-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8647f90ec71317b133ea2eb636464af1", "sha256": "f2a1e5b4cddfa7a77569003225915f6aab57316d66d21cb5c4d8139d8ea9ec4b" }, "downloads": -1, "filename": "ray-0.6.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8647f90ec71317b133ea2eb636464af1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 74918632, "upload_time": "2019-03-06T00:57:08", "upload_time_iso_8601": "2019-03-06T00:57:08.065573Z", "url": "https://files.pythonhosted.org/packages/94/84/dda698321f654f4f296b584902a19a3eabbb08792d3147712cf159c820a8/ray-0.6.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fec196d32f39bc3e68fe8b13a986b383", "sha256": "98bc192d6a19f5846a07d62c3774dc4e940d8288ee3d39ef8970b704d857eac4" }, "downloads": -1, "filename": "ray-0.6.4-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "fec196d32f39bc3e68fe8b13a986b383", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 11919952, "upload_time": "2019-03-06T00:57:13", "upload_time_iso_8601": "2019-03-06T00:57:13.657628Z", "url": "https://files.pythonhosted.org/packages/eb/74/cc8285da546fa7b594551ac05437c6ac1e908c8f142db39cd7482616cceb/ray-0.6.4-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "389b8321d5228e970b9dd421d9f69677", "sha256": "58765d883b912e488756619e3a0b4ba07c5dd478176d5f74d2a968118f6e2d83" }, "downloads": -1, "filename": "ray-0.6.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "389b8321d5228e970b9dd421d9f69677", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 74961585, "upload_time": "2019-03-06T00:57:25", "upload_time_iso_8601": "2019-03-06T00:57:25.318846Z", "url": "https://files.pythonhosted.org/packages/27/71/6a054e563cb7c3307e1bb059fabb87bbff0909aeee0d60dc1d5fee677e18/ray-0.6.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "056eb7dc1d751bcea8c672f7bdb051ba", "sha256": "8ea7cd5468e29ac092e349748fb7d2334e673512446889e137e40b430839b28a" }, "downloads": -1, "filename": "ray-0.6.4-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "056eb7dc1d751bcea8c672f7bdb051ba", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 11863766, "upload_time": "2019-03-06T00:57:31", "upload_time_iso_8601": "2019-03-06T00:57:31.850104Z", "url": "https://files.pythonhosted.org/packages/42/64/d429e70b56ca83c49889139015566c54f40cc4e4419ccfeedd8eab1a4ee3/ray-0.6.4-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d92041034269b31ce96b4e851c3c979c", "sha256": "35b5e9e0b8b4616e423865aacc114e9a3bcb8edaa008c01f1c5a781d373432d6" }, "downloads": -1, "filename": "ray-0.6.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d92041034269b31ce96b4e851c3c979c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 74980552, "upload_time": "2019-03-06T00:57:45", "upload_time_iso_8601": "2019-03-06T00:57:45.414477Z", "url": "https://files.pythonhosted.org/packages/a8/9c/f97486642b91eae949c65d7a8eef8548b964374c26412c624afa3f821a47/ray-0.6.4-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "672acc4b5c460bb6c2e990b01d07c367", "sha256": "2aebea414ef4cf4d039f16ae9c44de0ff84ed9e119e5de3470b65d665198095e" }, "downloads": -1, "filename": "ray-0.6.5-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "672acc4b5c460bb6c2e990b01d07c367", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 15347424, "upload_time": "2019-03-25T06:21:05", "upload_time_iso_8601": "2019-03-25T06:21:05.966126Z", "url": "https://files.pythonhosted.org/packages/43/d2/628528f9accac0436959389019a2bfeeb4f82552e3ca86df5a49a8977575/ray-0.6.5-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20ed1a0cdc3ab3687f4fac10c39620e9", "sha256": "031e5e66081cb04b428cfc3816933cc0e990b988d58f48497152e83ee550f4d3" }, "downloads": -1, "filename": "ray-0.6.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "20ed1a0cdc3ab3687f4fac10c39620e9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 20756357, "upload_time": "2019-03-25T06:22:10", "upload_time_iso_8601": "2019-03-25T06:22:10.987560Z", "url": "https://files.pythonhosted.org/packages/8b/0c/ca7333dab3004abc9759f006f0dcee5845f25ce2a4c81210021f02ae5392/ray-0.6.5-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be1fd5f1a1590d6872a2073f71e7b744", "sha256": "cf2483f058e1abeabe9c5008572c6a8378923f2d3c6fc4dba3d09472425bb250" }, "downloads": -1, "filename": "ray-0.6.5-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "be1fd5f1a1590d6872a2073f71e7b744", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 15390230, "upload_time": "2019-03-25T06:22:59", "upload_time_iso_8601": "2019-03-25T06:22:59.239375Z", "url": "https://files.pythonhosted.org/packages/81/93/2ca57ee2e99f63daf52a17094f59e07f2b4aff7132c29c1f25a10ed7dca9/ray-0.6.5-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0c0a9374008f5b766d9ea61ec96e6c6", "sha256": "66994f5248554de2b406b978abec119079d39061cae317a9ed9810dcf9a6f7e2" }, "downloads": -1, "filename": "ray-0.6.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c0c0a9374008f5b766d9ea61ec96e6c6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 54376219, "upload_time": "2019-03-25T06:25:55", "upload_time_iso_8601": "2019-03-25T06:25:55.509944Z", "url": "https://files.pythonhosted.org/packages/4b/b1/1e40e84531ea15623804c0300086ff271c98baa23bedd444ffe634d38ec5/ray-0.6.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13f56cdae31b331206c541f7ae4c8fdd", "sha256": "97ba039998d7f3a2e8e3007f4c4d33ac870680b7f2b107fcd9b1d1c17dfa9f00" }, "downloads": -1, "filename": "ray-0.6.5-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "13f56cdae31b331206c541f7ae4c8fdd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15383215, "upload_time": "2019-03-25T06:26:46", "upload_time_iso_8601": "2019-03-25T06:26:46.524357Z", "url": "https://files.pythonhosted.org/packages/be/ee/6033938a53c0405fe19de7f20abd9c93e9a6721cdadb785e687c718f53cf/ray-0.6.5-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "463481ceb3757931aa64d873c316d905", "sha256": "79d1a1b26766e96966e84d2603fa21ad64885b4d137bb852caf546942035ae5c" }, "downloads": -1, "filename": "ray-0.6.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "463481ceb3757931aa64d873c316d905", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 54404828, "upload_time": "2019-03-25T06:29:29", "upload_time_iso_8601": "2019-03-25T06:29:29.275571Z", "url": "https://files.pythonhosted.org/packages/9d/cf/63b2df9a8f13a322cbc95995c8d8fc43580b203757fa195af5e53d8fe5e0/ray-0.6.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01134462803de4e616dec2ded6537699", "sha256": "ca25cadc2b691625a6ae04b3d77ca55c93b9b93c8a1991cdde511df40534dda2" }, "downloads": -1, "filename": "ray-0.6.5-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "01134462803de4e616dec2ded6537699", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15378570, "upload_time": "2019-03-25T06:30:17", "upload_time_iso_8601": "2019-03-25T06:30:17.375666Z", "url": "https://files.pythonhosted.org/packages/cf/4e/c8119d1b744e3fc7f598eed41faa3b554b5049b95ac593e709cb4b0765d2/ray-0.6.5-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e4e18e92a1f76cb37b8d764f338f6aa", "sha256": "076974083ba9dc97386ef0ba4f77e1f91abe3879168baea9d9e0dcd99c25205b" }, "downloads": -1, "filename": "ray-0.6.5-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7e4e18e92a1f76cb37b8d764f338f6aa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 54410815, "upload_time": "2019-03-25T06:32:16", "upload_time_iso_8601": "2019-03-25T06:32:16.271570Z", "url": "https://files.pythonhosted.org/packages/5d/7d/aa243c3198781e90c0cdbe9868a68d399f5340319ad65c075e58d49f09c5/ray-0.6.5-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "be69afa463f733c5ceb6ee2f1f8658f4", "sha256": "9221c3b4165231750f77d1d317b337051e29a98e4a40317053c216e80287e3cc" }, "downloads": -1, "filename": "ray-0.6.6-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "be69afa463f733c5ceb6ee2f1f8658f4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 16385592, "upload_time": "2019-04-19T00:51:22", "upload_time_iso_8601": "2019-04-19T00:51:22.456954Z", "url": "https://files.pythonhosted.org/packages/a3/ab/015be2ffff96bcf1bddba618f5762aaee482ec3928af670e38dce33594ab/ray-0.6.6-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5bb7e435071fd32e1f70a42ebe4c0dc", "sha256": "e528341a3b20f0345f7b950507f0ef0cb2dd25c86740bdcd70da858a89d1bebc" }, "downloads": -1, "filename": "ray-0.6.6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b5bb7e435071fd32e1f70a42ebe4c0dc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 22062386, "upload_time": "2019-04-19T00:51:29", "upload_time_iso_8601": "2019-04-19T00:51:29.565674Z", "url": "https://files.pythonhosted.org/packages/4e/70/c1dd9567be6d6d235bcfabf5f456523838d8372b8a335e0c1cc1a860d30b/ray-0.6.6-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb93dc8c99e92ae0d27fffb9d36702e3", "sha256": "7e7e4d6ceead8ef642f8cec80351f9900ba6dc0dff019eb4d82f0e0c73db8cb7" }, "downloads": -1, "filename": "ray-0.6.6-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "bb93dc8c99e92ae0d27fffb9d36702e3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 16429393, "upload_time": "2019-04-19T00:51:35", "upload_time_iso_8601": "2019-04-19T00:51:35.283362Z", "url": "https://files.pythonhosted.org/packages/f1/97/44421132ed295ba4b263f71a5808942dba679fa3f1469ee1fe0dc3da8fe6/ray-0.6.6-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4da93231a5429a52deab25f9f08960a", "sha256": "46ee5cbe3e335553125b6bd905d799137f5bc73633a6a163ad3e5730c4a4bc52" }, "downloads": -1, "filename": "ray-0.6.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d4da93231a5429a52deab25f9f08960a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 56219947, "upload_time": "2019-04-19T00:51:44", "upload_time_iso_8601": "2019-04-19T00:51:44.758016Z", "url": "https://files.pythonhosted.org/packages/a7/aa/e52a56bf28e6103a9fa0ed7936664f54f92381a5770a074f9ca017673434/ray-0.6.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faa56d2be9761e7ec2b0bb2cb8967909", "sha256": "b2acc42433f0cf784e66c23c71e7b0960fe9e99fbf881ce5948530bf7cf387e8" }, "downloads": -1, "filename": "ray-0.6.6-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "faa56d2be9761e7ec2b0bb2cb8967909", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 16420658, "upload_time": "2019-04-19T00:51:50", "upload_time_iso_8601": "2019-04-19T00:51:50.465133Z", "url": "https://files.pythonhosted.org/packages/b5/69/99970153204b58a0462fef1487bcf65b13ad50ca3d4f519b612309cd2480/ray-0.6.6-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34c8dc317e7cd8bfed61ad8c5e65518e", "sha256": "a08e5bdaf283f19fa1aec521f4d2bb9d7dfe479bd9b6a759b4d84c0633bd004a" }, "downloads": -1, "filename": "ray-0.6.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "34c8dc317e7cd8bfed61ad8c5e65518e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 56247762, "upload_time": "2019-04-19T00:52:03", "upload_time_iso_8601": "2019-04-19T00:52:03.007473Z", "url": "https://files.pythonhosted.org/packages/c5/e8/7c549fa56bdfa9c32239211ebdcda60bf8994d7d838e1dbaebdcbf4ac519/ray-0.6.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a4eb1bffe4e78930e59d921d63c428a", "sha256": "d859f337a238d6c9907511ffde722c87a875662a9595ae9781c91cfaef97b5b7" }, "downloads": -1, "filename": "ray-0.6.6-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2a4eb1bffe4e78930e59d921d63c428a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 16415919, "upload_time": "2019-04-19T00:52:10", "upload_time_iso_8601": "2019-04-19T00:52:10.041265Z", "url": "https://files.pythonhosted.org/packages/70/a6/b809ecf83ffe2c314b6d911e2d57030c5898cab93b428bb35cfbaf23fffb/ray-0.6.6-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf48e23072937533a63aa5ea2fc743d1", "sha256": "37b3d9d2b6f113d1648ca97f5d58d382d887d677850ab6357c2bbe42e685c788" }, "downloads": -1, "filename": "ray-0.6.6-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bf48e23072937533a63aa5ea2fc743d1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 56249826, "upload_time": "2019-04-19T00:52:22", "upload_time_iso_8601": "2019-04-19T00:52:22.220487Z", "url": "https://files.pythonhosted.org/packages/b1/e3/47070d1beea8fa8db3a9ba62d088fe48290dd76a8bb8cb0c4d8d92a0a450/ray-0.6.6-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "458c09c997a1ff79278f2dd4bbdf1f5e", "sha256": "a7fd75f37ec84131c4b39a0c0a7eb1b43d0feaec30b17d7841b995835ee4f6e6" }, "downloads": -1, "filename": "ray-0.7.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "458c09c997a1ff79278f2dd4bbdf1f5e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 16808112, "upload_time": "2019-05-18T14:56:30", "upload_time_iso_8601": "2019-05-18T14:56:30.805268Z", "url": "https://files.pythonhosted.org/packages/a2/57/363c578ffa312b2cddb3ea7c4231deb112b3d5d80ee3d0d8f03097ccd99c/ray-0.7.0-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0a03b2936e6dd7a7772001aff6e43d2", "sha256": "d716de1295d79dc7c327043fd935c1655b7aa73beb7dd1437cd756fe1025f223" }, "downloads": -1, "filename": "ray-0.7.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f0a03b2936e6dd7a7772001aff6e43d2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 22436706, "upload_time": "2019-05-18T14:56:38", "upload_time_iso_8601": "2019-05-18T14:56:38.265414Z", "url": "https://files.pythonhosted.org/packages/43/92/6cdc682c53bbfdec380587abb36461b665c0a1c6143abecaada8e6901a1f/ray-0.7.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f73fe29eb06105454c7971791bcccfab", "sha256": "d8436092468455d49a87273ea79e66446eccb7fb4313be0d1e833bc37f98cfdd" }, "downloads": -1, "filename": "ray-0.7.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f73fe29eb06105454c7971791bcccfab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 16853572, "upload_time": "2019-05-18T14:56:44", "upload_time_iso_8601": "2019-05-18T14:56:44.060583Z", "url": "https://files.pythonhosted.org/packages/7a/c9/88c546585ee33015850eef788f5c25aee5a0454f866df36d065fc5afbcda/ray-0.7.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e0acc36e811000831d7e7cffa4ba480", "sha256": "dabd679845de6c579658cc858223a7a3cef5bf6674f3022a0897edc352dcf9a1" }, "downloads": -1, "filename": "ray-0.7.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2e0acc36e811000831d7e7cffa4ba480", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 56595599, "upload_time": "2019-05-18T14:56:56", "upload_time_iso_8601": "2019-05-18T14:56:56.845842Z", "url": "https://files.pythonhosted.org/packages/cd/c9/1ff1af3615806b4c278e2a51d40411f1c2c887cf7df599dbd14c22aa6425/ray-0.7.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "108b19e7e4ad9f721e6da70ffc87fb45", "sha256": "624ad2f7ed094c2329175dc847fb8f629e656f4c0cfd97ad337a787cdfc920b1" }, "downloads": -1, "filename": "ray-0.7.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "108b19e7e4ad9f721e6da70ffc87fb45", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 16845469, "upload_time": "2019-05-18T14:57:02", "upload_time_iso_8601": "2019-05-18T14:57:02.690130Z", "url": "https://files.pythonhosted.org/packages/b2/74/fb38c22c9f2355e88d6c134f823000568f4c8948f0327f5b892a1425088e/ray-0.7.0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9103f3cbd0296dd1e30209e408d0f996", "sha256": "463969852c1c731e9f12d2ba84c7ee265b27216a6b53db577c5f49701169541a" }, "downloads": -1, "filename": "ray-0.7.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9103f3cbd0296dd1e30209e408d0f996", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 56623479, "upload_time": "2019-05-18T14:57:15", "upload_time_iso_8601": "2019-05-18T14:57:15.098659Z", "url": "https://files.pythonhosted.org/packages/c4/41/0d0f9f8de4546a953652143fe235ddf3326f659136d4544b23554df59866/ray-0.7.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd74068f489476c7919059e4008f3439", "sha256": "e50dca516520af2afbc379d337916ac4eb542537e74fd4ae36c6389952bbd542" }, "downloads": -1, "filename": "ray-0.7.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "cd74068f489476c7919059e4008f3439", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 16838635, "upload_time": "2019-05-18T14:57:21", "upload_time_iso_8601": "2019-05-18T14:57:21.340636Z", "url": "https://files.pythonhosted.org/packages/c6/50/2d50828562ced0a53809ccbb160c303bc05d4079d0b02506c4cfee71c0bd/ray-0.7.0-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "148099b196b91fdb230bf9cc2cbb3d81", "sha256": "a5bf19b1882ca4fd2916244417feb5ffda182f4b975ee1309b34f3609265b419" }, "downloads": -1, "filename": "ray-0.7.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "148099b196b91fdb230bf9cc2cbb3d81", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 56625668, "upload_time": "2019-05-18T14:57:32", "upload_time_iso_8601": "2019-05-18T14:57:32.084637Z", "url": "https://files.pythonhosted.org/packages/d3/c2/2ed1a8b1c681808b7de0caa9927f28b34ff30f6495fc7975badcaab28e4d/ray-0.7.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "580554e079242c3073d2450e87c53fe5", "sha256": "41907bc9cc9da9392c045afc2758ac95fcfbaba6b7bb922cab256344d0e7c2bc" }, "downloads": -1, "filename": "ray-0.7.1-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "580554e079242c3073d2450e87c53fe5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 17693469, "upload_time": "2019-06-11T02:40:14", "upload_time_iso_8601": "2019-06-11T02:40:14.688276Z", "url": "https://files.pythonhosted.org/packages/94/7f/3b947a9b729dd3ef1928f2955120150a712ddaf82fce1166e5db16bfb61d/ray-0.7.1-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4cffb1d40ba7c6e12f7a45b4fe1fc1e1", "sha256": "b2d6d6788c4b53be604ad437c06958363314ffe890785a0ebd955b37c0d780dc" }, "downloads": -1, "filename": "ray-0.7.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4cffb1d40ba7c6e12f7a45b4fe1fc1e1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24376814, "upload_time": "2019-06-11T02:40:20", "upload_time_iso_8601": "2019-06-11T02:40:20.489493Z", "url": "https://files.pythonhosted.org/packages/fc/cf/6d33dff3c205caf27fa9e03930564a0284f947188534dc400ff24e6fa4bf/ray-0.7.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3d356c0dd54cccd8311c3917be7a80e", "sha256": "2fb06dd1764749c124355f7918dc1c6f0ee8f07ebbe7c53c5719ac8bbf320c80" }, "downloads": -1, "filename": "ray-0.7.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f3d356c0dd54cccd8311c3917be7a80e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 36597787, "upload_time": "2019-06-11T02:40:29", "upload_time_iso_8601": "2019-06-11T02:40:29.582348Z", "url": "https://files.pythonhosted.org/packages/c9/b0/30426e5f738422002e12cd5608f08da84d83afd1aa0ab1145a59a45f128f/ray-0.7.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7146ef5e872111a536620d2fedf180d0", "sha256": "481e85d3e8b7d49987efc6ea83528d28a99c9db3c615d53825d44135353d5121" }, "downloads": -1, "filename": "ray-0.7.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7146ef5e872111a536620d2fedf180d0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 58461380, "upload_time": "2019-06-11T02:40:47", "upload_time_iso_8601": "2019-06-11T02:40:47.211986Z", "url": "https://files.pythonhosted.org/packages/6f/35/288f0161ea15cac633a61dea108723fa02004b3485adcec18b6512457a1b/ray-0.7.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e51d5e717fce89c4167f0c50a2de273b", "sha256": "fc3bba2fdd345d2886aa7c9a35c92cf823ac5991d731a5d344ff822ab862aebe" }, "downloads": -1, "filename": "ray-0.7.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e51d5e717fce89c4167f0c50a2de273b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 36588699, "upload_time": "2019-06-11T02:41:00", "upload_time_iso_8601": "2019-06-11T02:41:00.947531Z", "url": "https://files.pythonhosted.org/packages/e4/3a/65c6b125952efed663f817d4a10333200a86069fc48d9ece3a130a581f3d/ray-0.7.1-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb290f06e7e8e80afcfd1cd06232e4c7", "sha256": "b193cd562a1b3e8b8c52c4adfd24249414c3864612bccf28df019c93e573c75b" }, "downloads": -1, "filename": "ray-0.7.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bb290f06e7e8e80afcfd1cd06232e4c7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 58487890, "upload_time": "2019-06-11T02:41:17", "upload_time_iso_8601": "2019-06-11T02:41:17.217525Z", "url": "https://files.pythonhosted.org/packages/28/a4/30459426ecd350eea876b355d1175748a80fd22ed0c2646aa481dfda600d/ray-0.7.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09dea8566759ec3567964bbb28928aa0", "sha256": "07d7f22736399cdd9ee345f68a21c88c2b7abd895131ac70b4f64ce31ef509b9" }, "downloads": -1, "filename": "ray-0.7.1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "09dea8566759ec3567964bbb28928aa0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 36582968, "upload_time": "2019-06-11T02:41:30", "upload_time_iso_8601": "2019-06-11T02:41:30.264574Z", "url": "https://files.pythonhosted.org/packages/d3/73/32aedc237c3d2eb83be3a8eda2848d6e1519c813ed610bd3f2410c7cefb3/ray-0.7.1-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cfa317f76bca043a7bbd5e82f9b145e", "sha256": "65161f637a7b817fcaeb0ad02bd92df1f2c3254711f96128d2590a9173abc702" }, "downloads": -1, "filename": "ray-0.7.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2cfa317f76bca043a7bbd5e82f9b145e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 58489427, "upload_time": "2019-06-11T02:41:50", "upload_time_iso_8601": "2019-06-11T02:41:50.918847Z", "url": "https://files.pythonhosted.org/packages/ff/a2/762734e9dffb33c9bcad7b52f70095928816763bfb422291adf5ce251820/ray-0.7.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "5c35aff3d7d8b1f88c3e4469cf697d22", "sha256": "2f03cd5c64fa13e9d9ea65080140f699f3f743b52f1df309b17726a132b257a8" }, "downloads": -1, "filename": "ray-0.7.2-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "5c35aff3d7d8b1f88c3e4469cf697d22", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 21028113, "upload_time": "2019-07-03T05:54:22", "upload_time_iso_8601": "2019-07-03T05:54:22.832974Z", "url": "https://files.pythonhosted.org/packages/b1/86/7e78989357e9be0f8a9459f09ecf9c8e67e89f3262568a1f3a43dc1998c9/ray-0.7.2-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79df6b32d69c0de7768809c62b85b55d", "sha256": "20b89f83df0cf9ab49c3ac2b0ff8c421563fc8a1cb035784fa1b0709c0c3fc47" }, "downloads": -1, "filename": "ray-0.7.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "79df6b32d69c0de7768809c62b85b55d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 25558099, "upload_time": "2019-07-03T05:54:30", "upload_time_iso_8601": "2019-07-03T05:54:30.657754Z", "url": "https://files.pythonhosted.org/packages/e3/71/ea8a772d755873c5c706e7c0be540c6e8f5cfe2b61e07ec28d9e7f5b0dda/ray-0.7.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "120e4cf240a64c98a566a961dd84d378", "sha256": "91000d9dfc74a7df69e01bf2183c2ac3273e09b39e17e15c3cce65048be07b65" }, "downloads": -1, "filename": "ray-0.7.2-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "120e4cf240a64c98a566a961dd84d378", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 30666391, "upload_time": "2019-07-03T05:54:39", "upload_time_iso_8601": "2019-07-03T05:54:39.576007Z", "url": "https://files.pythonhosted.org/packages/7e/4b/bf99e81cf0b8897a8c2fa07a564614f945054fd2dacce99047b2484c897b/ray-0.7.2-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a872572ed43458504f5392433ad57e94", "sha256": "745447932286a2f7f8d464c98e61517de6865bc193799efeeff373f57e14da02" }, "downloads": -1, "filename": "ray-0.7.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a872572ed43458504f5392433ad57e94", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 45972255, "upload_time": "2019-07-03T05:54:52", "upload_time_iso_8601": "2019-07-03T05:54:52.011939Z", "url": "https://files.pythonhosted.org/packages/8c/68/088eca23af99b0b6e79549fc2e56d85cbde5bb7b1279805a7c1c59a490dc/ray-0.7.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0f5ed86be22aac424c89cf4e2beb25d", "sha256": "1daa4387154d64057e5651d260918e6d95a9aeea4df04670b72b803c9393644f" }, "downloads": -1, "filename": "ray-0.7.2-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a0f5ed86be22aac424c89cf4e2beb25d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 30658676, "upload_time": "2019-07-03T05:55:01", "upload_time_iso_8601": "2019-07-03T05:55:01.537529Z", "url": "https://files.pythonhosted.org/packages/db/e8/0adf320402b468d15930b735e0b732ff724664177e7932cf6fdb2fa7a5f0/ray-0.7.2-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fb3d111a675c61279d105612dc490a6", "sha256": "e4b95633c52fb12fd985b0836ab4f7e76ec204bf90b4cd1d76ae1d2298f79625" }, "downloads": -1, "filename": "ray-0.7.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0fb3d111a675c61279d105612dc490a6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 46009696, "upload_time": "2019-07-03T05:55:12", "upload_time_iso_8601": "2019-07-03T05:55:12.930764Z", "url": "https://files.pythonhosted.org/packages/ba/df/4022f59fd3662dc5ba5ecfa3e3d2dd32d0add89ce46bccfa14ebf506612d/ray-0.7.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c49e3c4e1883eb158f3806a99b0eb828", "sha256": "d73d86a7815ac99f10f547deb6bf7c75bfbdf1ed6fdad1a7cdaa1cbc074ad461" }, "downloads": -1, "filename": "ray-0.7.2-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "c49e3c4e1883eb158f3806a99b0eb828", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 30653177, "upload_time": "2019-07-03T05:55:22", "upload_time_iso_8601": "2019-07-03T05:55:22.258364Z", "url": "https://files.pythonhosted.org/packages/2b/23/453c103a6e87027775dcb3e82dee240207ac0a097db690ef51f8368d959b/ray-0.7.2-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9b49d59e4be51936f2256d56d2cd2e3", "sha256": "d14c85c8abd7b71990f285c830712f2fbe5452fdbb55fbd31c6228e9515a3fcc" }, "downloads": -1, "filename": "ray-0.7.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d9b49d59e4be51936f2256d56d2cd2e3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 46009024, "upload_time": "2019-07-03T05:55:34", "upload_time_iso_8601": "2019-07-03T05:55:34.921162Z", "url": "https://files.pythonhosted.org/packages/8a/21/ef71933433c297e9d71fa13aef8fd5a9492dd40900b5d7684308d3796ff2/ray-0.7.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "b433accf7fc4cecfb1bca0840f9a8365", "sha256": "44b53a09a5f3d9380b943458029a5ed685e297bb80f596d329bf326e0114423c" }, "downloads": -1, "filename": "ray-0.7.3-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "b433accf7fc4cecfb1bca0840f9a8365", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 24322775, "upload_time": "2019-08-04T02:41:18", "upload_time_iso_8601": "2019-08-04T02:41:18.006121Z", "url": "https://files.pythonhosted.org/packages/50/e2/1a34636f16564a490cb9cf4c564ee53a0e2cff00ad63d71ae4c66f35301c/ray-0.7.3-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "412f07dc6bcf061d2e6db51a9b372857", "sha256": "cf8d69fdeb50ea8e41b6824c80a88da3eebbdfa1992d73e04fba9e3ae57fa093" }, "downloads": -1, "filename": "ray-0.7.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "412f07dc6bcf061d2e6db51a9b372857", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 28043164, "upload_time": "2019-08-04T02:41:27", "upload_time_iso_8601": "2019-08-04T02:41:27.082635Z", "url": "https://files.pythonhosted.org/packages/a8/dc/49b55cbc42fa20a0b4f8965ba500df9cb52d4896a5f6ad04f229d838f402/ray-0.7.3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0c02bcbc56b913a98cb2a1fe7dca402", "sha256": "454621febe908a5793b72571c02516f8728e4ddaf14802a54a2e731d7b4a3bf4" }, "downloads": -1, "filename": "ray-0.7.3-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a0c02bcbc56b913a98cb2a1fe7dca402", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 34019158, "upload_time": "2019-08-04T02:41:35", "upload_time_iso_8601": "2019-08-04T02:41:35.431940Z", "url": "https://files.pythonhosted.org/packages/b0/7c/45fb392983eaccbda1866911e4ee7d5a873840e2328de22f7a89b5bef250/ray-0.7.3-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afa76921edeebe32bb3d6d7bc6d7fb4c", "sha256": "b0ca2abe7da0ec5b608398a6615bc3072c563dab59f12a27df6e382fd97b043f" }, "downloads": -1, "filename": "ray-0.7.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "afa76921edeebe32bb3d6d7bc6d7fb4c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 48473542, "upload_time": "2019-08-04T02:41:46", "upload_time_iso_8601": "2019-08-04T02:41:46.495644Z", "url": "https://files.pythonhosted.org/packages/24/c2/9b8edfac6f9d48d8cbc9002943dece511e6fae11f868c4887a556fa1c37e/ray-0.7.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "283d64bfaa9939e367dfb73b86e1627a", "sha256": "3835060ca857a505d4395b9116e5a4bfb4449d97b5178609dca72de3a476e219" }, "downloads": -1, "filename": "ray-0.7.3-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "283d64bfaa9939e367dfb73b86e1627a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 34012530, "upload_time": "2019-08-04T02:41:56", "upload_time_iso_8601": "2019-08-04T02:41:56.135843Z", "url": "https://files.pythonhosted.org/packages/35/ea/1a653a81d3073eeb749681bed93eb5c71d9952533dd5c14ebf1464784939/ray-0.7.3-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1eb398f121facc40475fada2ce844060", "sha256": "d8821766b0c49937e9ea5bb91c88145126df2bcd2e3734e4a7169ad8e306f9b4" }, "downloads": -1, "filename": "ray-0.7.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1eb398f121facc40475fada2ce844060", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48509349, "upload_time": "2019-08-04T02:42:07", "upload_time_iso_8601": "2019-08-04T02:42:07.240931Z", "url": "https://files.pythonhosted.org/packages/a7/21/de080b8458de41fd8ac20dd96547418c0ed94eab4359e5885f4041d61337/ray-0.7.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab50fed735e747d4b20c575a7497781b", "sha256": "4c7d07df9a6501c9c33d9a79b5fefc76d792c318ae11ee3256050439afad8409" }, "downloads": -1, "filename": "ray-0.7.3-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ab50fed735e747d4b20c575a7497781b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 34006607, "upload_time": "2019-08-04T02:42:16", "upload_time_iso_8601": "2019-08-04T02:42:16.441498Z", "url": "https://files.pythonhosted.org/packages/99/e3/0642433d42ba64c335badea7bca3e251f9f7d772c5c5f17fc7d567e28a7b/ray-0.7.3-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b6465519368cb914b7fedb006925587", "sha256": "352ee4abd674810ee380b171a13b77136bd9e5e59ecc7176dd50ccbf84c7d6e8" }, "downloads": -1, "filename": "ray-0.7.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8b6465519368cb914b7fedb006925587", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 48509854, "upload_time": "2019-08-04T02:42:28", "upload_time_iso_8601": "2019-08-04T02:42:28.735820Z", "url": "https://files.pythonhosted.org/packages/1b/1f/935acaf5b93de906ffcafd459e440b391a4f149a50af539b017cfe060313/ray-0.7.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "ec2c9ddda4a911b02cb21ad0bec7c573", "sha256": "ad7db5fe74dc966e230ca4da72eee387babfc35a4ce3f98f5ea5d6c807d905cb" }, "downloads": -1, "filename": "ray-0.7.4-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ec2c9ddda4a911b02cb21ad0bec7c573", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 30455649, "upload_time": "2019-09-05T23:00:45", "upload_time_iso_8601": "2019-09-05T23:00:45.400269Z", "url": "https://files.pythonhosted.org/packages/38/46/adf68775a57d082ca89aaaee3b6b9056c755e71a731f014269f06708656a/ray-0.7.4-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "420c4fd4502f60921e6187edd101a8e8", "sha256": "425d4e57207c79a2d3ceac9ab12185fa81e21567e0ee3007c8c44c6ac4ccf6d7" }, "downloads": -1, "filename": "ray-0.7.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "420c4fd4502f60921e6187edd101a8e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 34854792, "upload_time": "2019-09-05T23:00:59", "upload_time_iso_8601": "2019-09-05T23:00:59.209742Z", "url": "https://files.pythonhosted.org/packages/92/75/59534409bb71de05189bd7a593860d42ea66ce1dd809139c6e1587c94eb9/ray-0.7.4-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9652c4dc4a00f56c51781314ef2da60", "sha256": "9ab2da122f2831b575ba3551a0fc2c149cf6ef4cfcc00215cb92c8ea31fe2f93" }, "downloads": -1, "filename": "ray-0.7.4-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a9652c4dc4a00f56c51781314ef2da60", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 49547775, "upload_time": "2019-09-05T23:01:16", "upload_time_iso_8601": "2019-09-05T23:01:16.864643Z", "url": "https://files.pythonhosted.org/packages/02/39/25292397008eb59ece76c1b3a3fd752a903533df4f8863e83072e660dbe0/ray-0.7.4-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d659cd53b991cd8f5971442684cde5f", "sha256": "f0ab138e6a304357c52c649814867804f662b844d3fd2ddc06f2cb6c348b87d2" }, "downloads": -1, "filename": "ray-0.7.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0d659cd53b991cd8f5971442684cde5f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 74886783, "upload_time": "2019-09-05T23:01:45", "upload_time_iso_8601": "2019-09-05T23:01:45.354286Z", "url": "https://files.pythonhosted.org/packages/43/ea/38a048affbe533ca81cf5506100dc59d0c59ca50db72a2afb7cc3c82abe7/ray-0.7.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f1a7f6883cb86a5950ff60853a4f212", "sha256": "4170c7bc33261c42357ca9866124348e47a6279badf424b6390ab9409c99bade" }, "downloads": -1, "filename": "ray-0.7.4-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "8f1a7f6883cb86a5950ff60853a4f212", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49546502, "upload_time": "2019-09-05T23:02:09", "upload_time_iso_8601": "2019-09-05T23:02:09.653750Z", "url": "https://files.pythonhosted.org/packages/d7/65/1cc38c8dabfcf0aa7f6e5ae3cf9cb417c98ede701e178a4d06deb0b77cbf/ray-0.7.4-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45d227737700d8bbb860acb2f53252c0", "sha256": "09b5655b46012544370d64097bd2eff493cf2502eb9fef5955111869ec408bd0" }, "downloads": -1, "filename": "ray-0.7.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "45d227737700d8bbb860acb2f53252c0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 74927090, "upload_time": "2019-09-05T23:03:06", "upload_time_iso_8601": "2019-09-05T23:03:06.293922Z", "url": "https://files.pythonhosted.org/packages/02/d1/3490a0361d6127ea794c8cc7d0495fc4e1bfb9e06dd5b565c7fb9b23df2d/ray-0.7.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "968fdead376aa9b273f26e94d1eed5d6", "sha256": "220659b8f1956bc041fc559aa716439a596ea91212c7ee614cb90dcd8720f543" }, "downloads": -1, "filename": "ray-0.7.4-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "968fdead376aa9b273f26e94d1eed5d6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 49537826, "upload_time": "2019-09-05T23:03:22", "upload_time_iso_8601": "2019-09-05T23:03:22.281815Z", "url": "https://files.pythonhosted.org/packages/b7/2c/a5a0eb612875fedfc346d490aa8a8ebd94ef69d6cfed0ef1934a31a112bc/ray-0.7.4-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "067958b5fb725ab54d2281da785d69a2", "sha256": "8e4247fdd45c648f6942dcd84927324b066da25d70b4235b95b20f99c1d647a9" }, "downloads": -1, "filename": "ray-0.7.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "067958b5fb725ab54d2281da785d69a2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 74925142, "upload_time": "2019-09-05T23:03:45", "upload_time_iso_8601": "2019-09-05T23:03:45.212494Z", "url": "https://files.pythonhosted.org/packages/31/c6/27ab973c23546d3b10b8b62c850296019023cb175d0ef432970396b307a1/ray-0.7.4-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "83d20319e8ff07d8477bdf106849a307", "sha256": "e14716f05e584cf226c73e2f7316ff2e50109e4e50b0ebff05facbef9bf8a63b" }, "downloads": -1, "filename": "ray-0.7.5-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "83d20319e8ff07d8477bdf106849a307", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 30435170, "upload_time": "2019-09-25T00:02:03", "upload_time_iso_8601": "2019-09-25T00:02:03.778859Z", "url": "https://files.pythonhosted.org/packages/4e/bf/3c6fcb0b41fb715e0d347e670b6e2b6c490894ebd20801ba347dc7e85310/ray-0.7.5-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "258c87f294427f87b5012a21284d5eca", "sha256": "07d8c40ec15ac53f6326a5011e0be7ecfbed968459fabc607fac982e8fc8e7bc" }, "downloads": -1, "filename": "ray-0.7.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "258c87f294427f87b5012a21284d5eca", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 34812760, "upload_time": "2019-09-25T00:02:18", "upload_time_iso_8601": "2019-09-25T00:02:18.607651Z", "url": "https://files.pythonhosted.org/packages/3f/cb/177f186d758d28db79f4bab7fd6591db629a6b5ad6ed83a0bbb4ef41889c/ray-0.7.5-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04c241158511c1734e96aed0bf0d4ad5", "sha256": "8071b56246c48591390d0606f766f1f058cf3c11dfbe188a0052fd85d9cfcfc8" }, "downloads": -1, "filename": "ray-0.7.5-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "04c241158511c1734e96aed0bf0d4ad5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 49528102, "upload_time": "2019-09-25T00:02:45", "upload_time_iso_8601": "2019-09-25T00:02:45.602780Z", "url": "https://files.pythonhosted.org/packages/94/64/bff5e0090b2e253373e399f0be6cadae5d63cce111debeeadfd9909620db/ray-0.7.5-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2437df22a6c0ec70a19429b73daa5b11", "sha256": "2c0339aca60888014d06679117fdc4e531e0eafca37a6826251d38583ddb9343" }, "downloads": -1, "filename": "ray-0.7.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2437df22a6c0ec70a19429b73daa5b11", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 74842040, "upload_time": "2019-09-25T00:03:26", "upload_time_iso_8601": "2019-09-25T00:03:26.424000Z", "url": "https://files.pythonhosted.org/packages/87/d7/0bd4aa92ec20e31dda56ae046ad6cdf622863b836dee4c27a2f33ff381e4/ray-0.7.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a538db010839f55522934750f8c0ea9", "sha256": "a5c992691ac3b55b3310474253b060aa0b67e6361d47ba7f3800f0f6304efbad" }, "downloads": -1, "filename": "ray-0.7.5-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0a538db010839f55522934750f8c0ea9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49527444, "upload_time": "2019-09-25T00:03:52", "upload_time_iso_8601": "2019-09-25T00:03:52.766777Z", "url": "https://files.pythonhosted.org/packages/00/c7/e9fc171e97d6a57fa1c0bac0a23b12ed7a767c669d312b0f3146bc11e696/ray-0.7.5-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08e48e1206675565d17fca8575a3ef94", "sha256": "9c778763676a8f21a555c18902556f16f77b417fa338ab1df4163591fd32c094" }, "downloads": -1, "filename": "ray-0.7.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "08e48e1206675565d17fca8575a3ef94", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 74882851, "upload_time": "2019-09-25T00:04:35", "upload_time_iso_8601": "2019-09-25T00:04:35.107001Z", "url": "https://files.pythonhosted.org/packages/9b/e7/37a7f8dc2b1f96c760a3950d8bb5a3f14066f1699f5d004f0f6462d880c9/ray-0.7.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a720d547a9206d53eb00c6527e32243d", "sha256": "f2e3990c01991925b4e8b39d52031b1e51fdd101fc395e77da8102f42490e7a4" }, "downloads": -1, "filename": "ray-0.7.5-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "a720d547a9206d53eb00c6527e32243d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 49517755, "upload_time": "2019-09-25T00:05:01", "upload_time_iso_8601": "2019-09-25T00:05:01.483883Z", "url": "https://files.pythonhosted.org/packages/d4/b3/7741672f1627d72ff2c125785598792838a653fdecc2a528ac6868447349/ray-0.7.5-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "770bc9fad87ff8c36a37f44e4948485c", "sha256": "8a71e672c00c319b70cedd2a8919d982fb40fb302bd44487fd40321c79b877d5" }, "downloads": -1, "filename": "ray-0.7.5-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "770bc9fad87ff8c36a37f44e4948485c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 74881128, "upload_time": "2019-09-25T00:05:53", "upload_time_iso_8601": "2019-09-25T00:05:53.126782Z", "url": "https://files.pythonhosted.org/packages/44/06/3e20103d7f6746d6fa9554e6133c7eafd9e4254f1b2c34a18634927438c6/ray-0.7.5-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "9bcd1c4100ac9682c857c327a3f887be", "sha256": "abacb0b2943116ae88442d9727e518addb2bfebf4b50d9608ce3fafbee2b6673" }, "downloads": -1, "filename": "ray-0.7.6-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9bcd1c4100ac9682c857c327a3f887be", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31528689, "upload_time": "2019-10-24T17:55:09", "upload_time_iso_8601": "2019-10-24T17:55:09.974149Z", "url": "https://files.pythonhosted.org/packages/3c/06/e09b3888286bb308c53ffe446dfb51915e3ec985b254fd5c47e98ebba23d/ray-0.7.6-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03812f371b74c756cd60d2eb5cfad5cb", "sha256": "598bf33728734aa54eefe818344bc18f68823c8b9066ad12fc76db525c0f3ac3" }, "downloads": -1, "filename": "ray-0.7.6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "03812f371b74c756cd60d2eb5cfad5cb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 35749724, "upload_time": "2019-10-24T17:55:22", "upload_time_iso_8601": "2019-10-24T17:55:22.500461Z", "url": "https://files.pythonhosted.org/packages/b2/d2/e750dc6656f59423581fff5d98b205678e962704a3c7a92e0425cd1baf34/ray-0.7.6-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91c61222fdfc245f0a5f4735f2d77a9e", "sha256": "1eaece6f72ecea0dea7486c62a48e3b584978d77f78c8eb6f0f46886e3b03ec3" }, "downloads": -1, "filename": "ray-0.7.6-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "91c61222fdfc245f0a5f4735f2d77a9e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 50622845, "upload_time": "2019-10-24T17:55:40", "upload_time_iso_8601": "2019-10-24T17:55:40.918351Z", "url": "https://files.pythonhosted.org/packages/c6/3c/73be72bc035a79931479589d6edeafac666edd0f8694558648918e02d811/ray-0.7.6-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c908219eeaaf3263229509098c63789", "sha256": "42bb2f3e224ca8665a512d412b0400cb82f839dcc803faed6be2bdf4b36654bf" }, "downloads": -1, "filename": "ray-0.7.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1c908219eeaaf3263229509098c63789", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 75779422, "upload_time": "2019-10-24T17:56:06", "upload_time_iso_8601": "2019-10-24T17:56:06.065824Z", "url": "https://files.pythonhosted.org/packages/4d/cd/2f8290a8bd58e0b2454c6b04deca0aaebb11e422268a80dfdf62043e3758/ray-0.7.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "453e104cdfb16c1a0c6835fa665050a3", "sha256": "9825d589977b53218373e2d8264dbb76a166d497b3f0a16e18bd18b5adcefca1" }, "downloads": -1, "filename": "ray-0.7.6-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "453e104cdfb16c1a0c6835fa665050a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 50620617, "upload_time": "2019-10-24T17:56:27", "upload_time_iso_8601": "2019-10-24T17:56:27.256250Z", "url": "https://files.pythonhosted.org/packages/8e/bc/3c82a08233ec4b9abed58db18d38a764110d0411d02ced080158775b9571/ray-0.7.6-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6c849b8d61bee345c453ba31a817a1a", "sha256": "9d7f6650a9d57b8ef033c71558d4e5ec32dc96af3ca908af7b36fb9926da9b48" }, "downloads": -1, "filename": "ray-0.7.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6c849b8d61bee345c453ba31a817a1a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 75819304, "upload_time": "2019-10-24T17:57:01", "upload_time_iso_8601": "2019-10-24T17:57:01.173343Z", "url": "https://files.pythonhosted.org/packages/ed/83/59ddfbd982626f5fa58f0ab9ea201757b1ccc34ba3b3bdf44a61a3a7d8b1/ray-0.7.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29556f76d2f351cfe1964be9f1cecefc", "sha256": "95cfdb2143c08e50e0a22c101a8015832c4a99247a9a2190ba487357c2ca35f7" }, "downloads": -1, "filename": "ray-0.7.6-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "29556f76d2f351cfe1964be9f1cecefc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50611058, "upload_time": "2019-10-24T17:57:21", "upload_time_iso_8601": "2019-10-24T17:57:21.689987Z", "url": "https://files.pythonhosted.org/packages/eb/6d/6625e213e3e011c8d4ab870195972f7761ed600c2761316248db00164c61/ray-0.7.6-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c209649ecdd224189ed852670b8da6f", "sha256": "e02bae9b58ab47b38e17b7731dfc3fae70ee816b64dc0796f415366923990ee7" }, "downloads": -1, "filename": "ray-0.7.6-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7c209649ecdd224189ed852670b8da6f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 75817711, "upload_time": "2019-10-24T17:57:58", "upload_time_iso_8601": "2019-10-24T17:57:58.439694Z", "url": "https://files.pythonhosted.org/packages/83/07/cd57a74382f421b58d0a89e1bfb268292e13014411df6e5d553c49619430/ray-0.7.6-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.7.7": [ { "comment_text": "", "digests": { "md5": "ca346b43b1d5120f90935063a07796dc", "sha256": "cb78cd4b5a0c69713965a0350ab8b5b46542d0a0d6d25aabd1cad69b9c15db0e" }, "downloads": -1, "filename": "ray-0.7.7-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "ca346b43b1d5120f90935063a07796dc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31269907, "upload_time": "2019-12-16T00:48:17", "upload_time_iso_8601": "2019-12-16T00:48:17.948518Z", "url": "https://files.pythonhosted.org/packages/27/d4/adf0f43f10e76845a3e4061d486feb6cc665d6b4963cd882be35e972fda5/ray-0.7.7-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59cca5c5fdc684513f7c0e2554ae33bd", "sha256": "a46c1e3f1d883ca79718aa3f782c019bf6959434a399643bee54e22e48eb33eb" }, "downloads": -1, "filename": "ray-0.7.7-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "59cca5c5fdc684513f7c0e2554ae33bd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 32441375, "upload_time": "2019-12-16T00:48:32", "upload_time_iso_8601": "2019-12-16T00:48:32.992113Z", "url": "https://files.pythonhosted.org/packages/2c/5b/d9a99862513209700c9a8b9151aefe53c30325734d160fefd947c8d4115d/ray-0.7.7-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e43ed639b7140bfdb58d43a0ea702e09", "sha256": "8bac293e69fa36b2b152e9395327a9c177e34136c4b3a0b142b8ff4c26b7b137" }, "downloads": -1, "filename": "ray-0.7.7-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e43ed639b7140bfdb58d43a0ea702e09", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 50418081, "upload_time": "2019-12-16T00:48:50", "upload_time_iso_8601": "2019-12-16T00:48:50.783319Z", "url": "https://files.pythonhosted.org/packages/ff/02/81df3fbb38be3d8b13c7365c93b228ae0dae457104e331b4953ffc890154/ray-0.7.7-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d79e77978c748b73c7c2c54be031708f", "sha256": "37dfcdf9260ae2f6404ac9344fac62f544758912454e5725c5449e4366e8b9fc" }, "downloads": -1, "filename": "ray-0.7.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d79e77978c748b73c7c2c54be031708f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 73491327, "upload_time": "2019-12-16T00:49:11", "upload_time_iso_8601": "2019-12-16T00:49:11.494327Z", "url": "https://files.pythonhosted.org/packages/fa/4c/5daa61260e7d1a597aebd351ac8d807f406faa1fe4c6c78d9cca0c28c063/ray-0.7.7-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ab01c05083b0f055e12292d56f8ae7f", "sha256": "577980b985c0bb10e5b7383f6157a55203d90bfb1d995fc4ce6d51d38b6a2f0f" }, "downloads": -1, "filename": "ray-0.7.7-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2ab01c05083b0f055e12292d56f8ae7f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 50686817, "upload_time": "2019-12-16T00:49:30", "upload_time_iso_8601": "2019-12-16T00:49:30.642990Z", "url": "https://files.pythonhosted.org/packages/0c/89/304c60a712d02c02f5e9281c17ed9bf8722f21306ab13751a7a802d8f265/ray-0.7.7-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4757cd16469d8ea35913ba710a44240", "sha256": "fb963fec1db0d3caab366daeb1c537cf58d1b41073abe3767d652d51822cd256" }, "downloads": -1, "filename": "ray-0.7.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d4757cd16469d8ea35913ba710a44240", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 73791200, "upload_time": "2019-12-16T00:49:58", "upload_time_iso_8601": "2019-12-16T00:49:58.588813Z", "url": "https://files.pythonhosted.org/packages/b5/00/3777dffeada130e683425a91831fd675fa253dd819ae66533292891d9b8d/ray-0.7.7-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1cb8c66b638aa276835440843a00097", "sha256": "74b2ae2c5125989cca905beeac5285d10388449562bd0dd1910cce2368c4b24b" }, "downloads": -1, "filename": "ray-0.7.7-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "d1cb8c66b638aa276835440843a00097", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50587214, "upload_time": "2019-12-16T00:50:16", "upload_time_iso_8601": "2019-12-16T00:50:16.795815Z", "url": "https://files.pythonhosted.org/packages/e7/b7/6c066c95162475a3b3a9e1b7c2f0c71b3f021f6e9c8f49476d37c4276dee/ray-0.7.7-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45893df9870a7e5e422b3248f68098a3", "sha256": "616dc306305dbab639b0c35f5c8afeb4ea615d6726691a46b1a700a55babf428" }, "downloads": -1, "filename": "ray-0.7.7-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "45893df9870a7e5e422b3248f68098a3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 73793152, "upload_time": "2019-12-16T00:50:50", "upload_time_iso_8601": "2019-12-16T00:50:50.813816Z", "url": "https://files.pythonhosted.org/packages/9f/c6/998458f7f30fcbb8800413f4a68b4973aeabef7ffa0cd6ee26c45b321a73/ray-0.7.7-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "f6e2744c74c325d488dd19c898f8f2cf", "sha256": "f61110fa8980a80b8d298f2bbe10a19e4ef69ce89da271b39c7e3c654a5551e2" }, "downloads": -1, "filename": "ray-0.8.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "f6e2744c74c325d488dd19c898f8f2cf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31727149, "upload_time": "2019-12-17T21:17:48", "upload_time_iso_8601": "2019-12-17T21:17:48.821714Z", "url": "https://files.pythonhosted.org/packages/68/42/62c9c708bde6ba7ee0fb9d859595bb4d9329cd4ea9eb5537826b2e758eb6/ray-0.8.0-cp27-cp27m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85cd3d3ac865a0753d006b7fefd7572e", "sha256": "72fab186887ef883c0fa9bc78f238fdf3489413be02f854037d57b17c554ea2d" }, "downloads": -1, "filename": "ray-0.8.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "85cd3d3ac865a0753d006b7fefd7572e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 31500453, "upload_time": "2019-12-17T21:18:01", "upload_time_iso_8601": "2019-12-17T21:18:01.133248Z", "url": "https://files.pythonhosted.org/packages/80/db/184fedcea90984d6903dbac0e84b1d375921f90305fe4349c8935b88e141/ray-0.8.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ee4401df4c8724c1839ba432dae7a5c", "sha256": "66863ed1f630cdef8179aef6bdec997d074b432748e1ded2b1e58b25dc374769" }, "downloads": -1, "filename": "ray-0.8.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9ee4401df4c8724c1839ba432dae7a5c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 50876613, "upload_time": "2019-12-17T21:18:18", "upload_time_iso_8601": "2019-12-17T21:18:18.198780Z", "url": "https://files.pythonhosted.org/packages/b5/d8/021c9e76df798ba6d01d1226dda983d7bd6cf129c681fc31acca17ccfd08/ray-0.8.0-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95ed924cb9f60dec718f01498752f3ba", "sha256": "c209a5cb28683ba66e2bc2c783182571e2a58a505e9945c28a0af67a0c2f6206" }, "downloads": -1, "filename": "ray-0.8.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "95ed924cb9f60dec718f01498752f3ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 72549296, "upload_time": "2019-12-17T21:18:45", "upload_time_iso_8601": "2019-12-17T21:18:45.701537Z", "url": "https://files.pythonhosted.org/packages/38/eb/3eb3d80256a591fd8df940cd819e7712223d46abfcbb169652025b1e8c9f/ray-0.8.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ccc0a724d8f36954cce499b7f008a11", "sha256": "75e0825c236e866f9548c686ac7baad77c4743c0b1601fa1289c7b6ebdbeecfa" }, "downloads": -1, "filename": "ray-0.8.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "9ccc0a724d8f36954cce499b7f008a11", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 51144960, "upload_time": "2019-12-17T21:19:03", "upload_time_iso_8601": "2019-12-17T21:19:03.301929Z", "url": "https://files.pythonhosted.org/packages/6e/dc/4a6a33c4c45f5bac867004801c0a466d10165bf01bedd147c155ad121b18/ray-0.8.0-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7bdc97104ee40dbd84d59708b863ad59", "sha256": "18ab6b7df84c625676a37798370c30e0b958143ca1ddee8ea31d8fac3dbfac93" }, "downloads": -1, "filename": "ray-0.8.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7bdc97104ee40dbd84d59708b863ad59", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 72849742, "upload_time": "2019-12-17T21:19:27", "upload_time_iso_8601": "2019-12-17T21:19:27.464464Z", "url": "https://files.pythonhosted.org/packages/39/3b/79774ce51bdfe1be7845978bce88d2926a1d094fcb24d7156cbd95f10edc/ray-0.8.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2546eae9304473b32d1fd4a0169bc0c0", "sha256": "aee39b2780dc2c0119aedef798c5e3b8579592c652c2e63717ea663344c4fc52" }, "downloads": -1, "filename": "ray-0.8.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "2546eae9304473b32d1fd4a0169bc0c0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 51044620, "upload_time": "2019-12-17T21:19:46", "upload_time_iso_8601": "2019-12-17T21:19:46.491793Z", "url": "https://files.pythonhosted.org/packages/69/bc/6d9507635860ade53447fe7787c55c80af0cd5cf345cd76cdf55dc4b4f63/ray-0.8.0-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "625b2032b86c5d601ef630376bc314e7", "sha256": "87c1547ab9f5c1d7c6629a91890830fbb37efff61bfe1646e4013fde383bed9e" }, "downloads": -1, "filename": "ray-0.8.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "625b2032b86c5d601ef630376bc314e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 72850014, "upload_time": "2019-12-17T21:20:14", "upload_time_iso_8601": "2019-12-17T21:20:14.248999Z", "url": "https://files.pythonhosted.org/packages/75/46/34fc67a6647ffb0c427feadc2da0745d84db333be38f10371c787300bc31/ray-0.8.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "e94c505ece45f56d5ed5d00834a8a2b0", "sha256": "fd7c0d4a5f709e40028475a7fbdc6ae70c4355971a1da57245473c55f7004bab" }, "downloads": -1, "filename": "ray-0.8.1-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "e94c505ece45f56d5ed5d00834a8a2b0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 73228892, "upload_time": "2020-01-27T22:14:13", "upload_time_iso_8601": "2020-01-27T22:14:13.201725Z", "url": "https://files.pythonhosted.org/packages/ea/cf/add6b477478e4f47fd4dae97c35a4729f4a06efbd8da29e40ab14c58dfc4/ray-0.8.1-cp35-cp35m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de8b2a39483ee6a88b55c39bf297af42", "sha256": "d560fb3fa741a98a23c25dc2d8483c7be3bf74a2e70bfba91706ea1856656488" }, "downloads": -1, "filename": "ray-0.8.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "de8b2a39483ee6a88b55c39bf297af42", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 74004832, "upload_time": "2020-01-27T22:14:37", "upload_time_iso_8601": "2020-01-27T22:14:37.376792Z", "url": "https://files.pythonhosted.org/packages/c1/29/6c0f75c31c1501dd6c5f43c68655b0b76d782ffadd84d6d84a0a321573fa/ray-0.8.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c9188ec1a2ac055c0a7bb3e0dea9717", "sha256": "a61bd0a9e742fce2a751266f34f313daa312598498623e0c2d82bbfba5e5fc32" }, "downloads": -1, "filename": "ray-0.8.1-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0c9188ec1a2ac055c0a7bb3e0dea9717", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 73500781, "upload_time": "2020-01-27T22:15:01", "upload_time_iso_8601": "2020-01-27T22:15:01.873729Z", "url": "https://files.pythonhosted.org/packages/fc/72/2e3b25877b6986cbed383449c40d22133c0394542a6a85c6e1778b5da36b/ray-0.8.1-cp36-cp36m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ba8249b22b4ed1841507e6ef9c7e9ce", "sha256": "3c173c9ccb75fe82647ea64119b46397f666705cbc0c0d6d7b4ad84bbb99f57f" }, "downloads": -1, "filename": "ray-0.8.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6ba8249b22b4ed1841507e6ef9c7e9ce", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 74307991, "upload_time": "2020-01-27T22:15:27", "upload_time_iso_8601": "2020-01-27T22:15:27.100240Z", "url": "https://files.pythonhosted.org/packages/78/9e/c1f78f46753924ad3dc25786c3744eba0b752683dd23be527feda46a1d5e/ray-0.8.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0530754f603fe667e1940bc7c9754055", "sha256": "2be8495c8cb13e4edabb2b2a76317e241d9fcb9c3e461756e1c87a55901a28f7" }, "downloads": -1, "filename": "ray-0.8.1-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": false, "md5_digest": "0530754f603fe667e1940bc7c9754055", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 73396529, "upload_time": "2020-01-27T22:16:01", "upload_time_iso_8601": "2020-01-27T22:16:01.907337Z", "url": "https://files.pythonhosted.org/packages/a2/c5/7a50facf9e9cc1be514c862696bc7b8a9636c6f9d3f78580d76f372162a0/ray-0.8.1-cp37-cp37m-macosx_10_6_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bea5092edae636534e1ecc335d3ff159", "sha256": "8bca491f70a796c1b6e38c0ab8c1a180997092e410bdaa69fa09601b36ad0654" }, "downloads": -1, "filename": "ray-0.8.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bea5092edae636534e1ecc335d3ff159", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 74308142, "upload_time": "2020-01-27T22:16:30", "upload_time_iso_8601": "2020-01-27T22:16:30.593446Z", "url": "https://files.pythonhosted.org/packages/45/37/0e9877a2729d31881d9bb2cad1f9aedd2f451602af67706df6faaef33e7f/ray-0.8.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "2cdfad68d5c61dca9359b823211fa588", "sha256": "7c30d3f592c81cd2a66e03d560ba62e55762a89d8ee1609b6108808dcecd5a0d" }, "downloads": -1, "filename": "ray-0.8.2-cp35-cp35m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "2cdfad68d5c61dca9359b823211fa588", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 45371185, "upload_time": "2020-02-24T19:20:21", "upload_time_iso_8601": "2020-02-24T19:20:21.451654Z", "url": "https://files.pythonhosted.org/packages/6e/e4/f2c4f3a3b68ed849bf2442333ef5249d3e9fea4bc63368c902922a76b7db/ray-0.8.2-cp35-cp35m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d8dbf89b79cfba5e066627b22da2b1c", "sha256": "d8556848000b4d2edb8076bb0bc37fdf457dad6701e62cc1afd066224488f720" }, "downloads": -1, "filename": "ray-0.8.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6d8dbf89b79cfba5e066627b22da2b1c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 19096821, "upload_time": "2020-02-24T19:20:32", "upload_time_iso_8601": "2020-02-24T19:20:32.058869Z", "url": "https://files.pythonhosted.org/packages/05/ea/1f91f92879e1a0f8845311439ebb3e53e11c25132727a12dc4d54f1d540a/ray-0.8.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "395fd13e3a72a4bcf23808f960a3e936", "sha256": "645c3bd749ccfac281e76f5b40785d31f14c998d789fe178cbf79dde8798729f" }, "downloads": -1, "filename": "ray-0.8.2-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "395fd13e3a72a4bcf23808f960a3e936", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 45380230, "upload_time": "2020-02-24T19:20:46", "upload_time_iso_8601": "2020-02-24T19:20:46.661684Z", "url": "https://files.pythonhosted.org/packages/fb/77/256338a6943bfbd7005b07ceb3b793fd1491771155c7da11f94caaa00b6a/ray-0.8.2-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b800545a6bb64c4a67027d18554e8f5a", "sha256": "6558b753399beaae5de92082dd3bfd3fe33428381a5a2ff2a4b5125ebb2c5bb6" }, "downloads": -1, "filename": "ray-0.8.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b800545a6bb64c4a67027d18554e8f5a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19100908, "upload_time": "2020-02-24T19:22:59", "upload_time_iso_8601": "2020-02-24T19:22:59.944058Z", "url": "https://files.pythonhosted.org/packages/a8/47/7bc688d2c06c1d0fbd388b4e2725028b2792e1f652a28b848462a724c972/ray-0.8.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00e976625de1674988dae648394df35d", "sha256": "22dfc3816630a3c5124312010d45beecf1294e9405101339372a5412aee86bd6" }, "downloads": -1, "filename": "ray-0.8.2-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "00e976625de1674988dae648394df35d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 45357403, "upload_time": "2020-02-24T19:23:14", "upload_time_iso_8601": "2020-02-24T19:23:14.618967Z", "url": "https://files.pythonhosted.org/packages/89/95/5db3a4d7755414c8b325493889b42a43f8f207db4ace44a065ef67026dc5/ray-0.8.2-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a243911cecd9899f4f44c97e04278c7", "sha256": "9cb8d3a5400dfa5cf71de4204ce504d6940de755bc2a6fe295ae1b94ff196b43" }, "downloads": -1, "filename": "ray-0.8.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9a243911cecd9899f4f44c97e04278c7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19097035, "upload_time": "2020-02-24T19:23:33", "upload_time_iso_8601": "2020-02-24T19:23:33.008993Z", "url": "https://files.pythonhosted.org/packages/0e/65/ed3bc6bd5aa85a734badb4001e261bc069c8e27dbb5c958c0ba422229732/ray-0.8.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "72a720c1101b1dc26ba0b698c74cc74d", "sha256": "4ef48fdc9474611632993da7940e1f1fc2717ad81701c43745d2b7f54209b86e" }, "downloads": -1, "filename": "ray-0.8.3-cp35-cp35m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "72a720c1101b1dc26ba0b698c74cc74d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 48278308, "upload_time": "2020-03-25T21:25:26", "upload_time_iso_8601": "2020-03-25T21:25:26.713284Z", "url": "https://files.pythonhosted.org/packages/c3/6b/fd26e8bf1835027e08472f07ac6dd1450fb4f5e37def18437005dc214f61/ray-0.8.3-cp35-cp35m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cd8f83a8d43a5fbd01494f1ab0d42b1", "sha256": "b9451c3f137479cde433c9a25ee051ca7046066fabfef92c10d10dee0aeeb61d" }, "downloads": -1, "filename": "ray-0.8.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0cd8f83a8d43a5fbd01494f1ab0d42b1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20108137, "upload_time": "2020-03-25T21:25:31", "upload_time_iso_8601": "2020-03-25T21:25:31.496047Z", "url": "https://files.pythonhosted.org/packages/90/be/84fd121619b740f5ac9eb5e1d5741fb3bc436f3bf4740f74f8323d95a2c3/ray-0.8.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8274c7e360ea75b206e65395cdb8c302", "sha256": "0a2adc3efa2abe389ab03ee9d90d91901fcc2aa8b0a69fa63ee93a7b7b45b390" }, "downloads": -1, "filename": "ray-0.8.3-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "8274c7e360ea75b206e65395cdb8c302", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48284262, "upload_time": "2020-03-25T21:25:37", "upload_time_iso_8601": "2020-03-25T21:25:37.004412Z", "url": "https://files.pythonhosted.org/packages/91/84/38c897cd7be54cc2b8a48bbabb7e7fa4a3c98cc23e65502b375b0c5c8c28/ray-0.8.3-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e436f0269f4e5b0e8eab2f0389fc71e5", "sha256": "3a9aa81f11bd0a32e779570786f2dce61b0072ceddb79905a3020c9d7945dba9" }, "downloads": -1, "filename": "ray-0.8.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e436f0269f4e5b0e8eab2f0389fc71e5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 20107151, "upload_time": "2020-03-25T21:25:41", "upload_time_iso_8601": "2020-03-25T21:25:41.166030Z", "url": "https://files.pythonhosted.org/packages/5c/38/391eeaa496c4ead4ba47d98a6acb740d776fec9da37ec87ddf75f76bb14a/ray-0.8.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f15cda7c3f31ed50fca98b41fbbf6e9", "sha256": "02fa78c2af4edae0be3a89c7637d19a3fcd26a5ada6c7a83c0838edbc5cf3260" }, "downloads": -1, "filename": "ray-0.8.3-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "3f15cda7c3f31ed50fca98b41fbbf6e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 48265514, "upload_time": "2020-03-25T21:25:46", "upload_time_iso_8601": "2020-03-25T21:25:46.740680Z", "url": "https://files.pythonhosted.org/packages/9b/2c/ff4a95c167dc8ee027572674857e4803e2f7e5e50621894894225007e98e/ray-0.8.3-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11faa84fe82e9ffe10b0e9a68988e6fd", "sha256": "15f312769dd8cc1bc331a4948a7d1e83d964927ca735ce6315551c51ad21d3c0" }, "downloads": -1, "filename": "ray-0.8.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "11faa84fe82e9ffe10b0e9a68988e6fd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 20104271, "upload_time": "2020-03-25T21:25:51", "upload_time_iso_8601": "2020-03-25T21:25:51.014425Z", "url": "https://files.pythonhosted.org/packages/6f/6c/b7c6c1ab0ca8631357ce0eff6edf480e003a3a988da1735319cacf30ce12/ray-0.8.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "afb85b721e17931625628b3123587fe1", "sha256": "a8a5ee91c3675942710d191ec4a8ec006242ed812a28e24ab49e8a8d8f14d2e2" }, "downloads": -1, "filename": "ray-0.8.4-cp35-cp35m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "afb85b721e17931625628b3123587fe1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 48516340, "upload_time": "2020-04-02T17:35:02", "upload_time_iso_8601": "2020-04-02T17:35:02.585027Z", "url": "https://files.pythonhosted.org/packages/67/5b/1212577e5ee88fc238368c68deadb9a1753d8e1add8defef6b6470278057/ray-0.8.4-cp35-cp35m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e1b4988c938e7ee3069a0a579e812d8", "sha256": "d7329cf856d81c59b0dcffe3ac8b5c244c64bf59652c2bfc8301feca39e4da5e" }, "downloads": -1, "filename": "ray-0.8.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1e1b4988c938e7ee3069a0a579e812d8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 20201465, "upload_time": "2020-04-02T17:35:07", "upload_time_iso_8601": "2020-04-02T17:35:07.486712Z", "url": "https://files.pythonhosted.org/packages/2c/13/88bc9c859e2ed77fc6e55a6704fea4b62adf448e4e125702ba4f4a6fde2d/ray-0.8.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "336782510e4560f7d4a03f335df2db90", "sha256": "c894c681b221e337ace0b3f4a157fc0fb639bf653f5d4f4a9902b9c95af0a0f5" }, "downloads": -1, "filename": "ray-0.8.4-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "336782510e4560f7d4a03f335df2db90", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48528842, "upload_time": "2020-04-02T17:35:14", "upload_time_iso_8601": "2020-04-02T17:35:14.158575Z", "url": "https://files.pythonhosted.org/packages/c3/e5/15b60b90a928edd42788771eda1b0b4dfb12e370266390dc371838728590/ray-0.8.4-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc5e8afbb14c2e8c546520fdcd629785", "sha256": "347e0282fc7c83fd1e2e0c1c0b2c9c486335f11a31154ed4c659ad9ee9b27548" }, "downloads": -1, "filename": "ray-0.8.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cc5e8afbb14c2e8c546520fdcd629785", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 20201422, "upload_time": "2020-04-02T17:35:18", "upload_time_iso_8601": "2020-04-02T17:35:18.753653Z", "url": "https://files.pythonhosted.org/packages/25/26/80a5b9f68e09d75da924eb9702edeffa9e141d7bc252a27ce6fe178b7b6d/ray-0.8.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea2077ae38d633e8c9d77de1682893ef", "sha256": "8f8e8326db699d6adca971541bd76b57c642e804fd8432a1f009f7c6725f41fa" }, "downloads": -1, "filename": "ray-0.8.4-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "ea2077ae38d633e8c9d77de1682893ef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 48503548, "upload_time": "2020-04-02T17:35:45", "upload_time_iso_8601": "2020-04-02T17:35:45.588760Z", "url": "https://files.pythonhosted.org/packages/f6/f5/08e72dcd467131221efd0e81cc09c5f63975b4d133cb0db9bb44b50d5286/ray-0.8.4-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f38760a2a353eafb4772c97b1795f82", "sha256": "f2cca186a9f8a18f9d58eadcd8ea126addc3192e922f36a7ced46b8b8904ac65" }, "downloads": -1, "filename": "ray-0.8.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8f38760a2a353eafb4772c97b1795f82", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 20198660, "upload_time": "2020-04-02T17:35:49", "upload_time_iso_8601": "2020-04-02T17:35:49.991138Z", "url": "https://files.pythonhosted.org/packages/67/9c/c691a82a1551300b9aa72074cfc2af5eb4b9f93985f3312ba076629be918/ray-0.8.4-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebb2c7de314ef852be14b81d2028a1b8", "sha256": "a63cb71dd69bf5c70ffca06d244f1450e6eb9d2f84685c412a4a9184999e531a" }, "downloads": -1, "filename": "ray-0.8.4-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "ebb2c7de314ef852be14b81d2028a1b8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 48428886, "upload_time": "2020-04-02T17:35:59", "upload_time_iso_8601": "2020-04-02T17:35:59.336343Z", "url": "https://files.pythonhosted.org/packages/06/3d/028667323bc6a7205c95f8c285f073b947908423af25e16d6698ac4d5ae4/ray-0.8.4-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dea5a4c0a130af88d16371a1625495f7", "sha256": "d9686f0f8c68cccb5d21d4ec3fb0741042f0681cd6ea2d2b950355c207285c4d" }, "downloads": -1, "filename": "ray-0.8.4-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dea5a4c0a130af88d16371a1625495f7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 20217899, "upload_time": "2020-04-02T17:36:04", "upload_time_iso_8601": "2020-04-02T17:36:04.023725Z", "url": "https://files.pythonhosted.org/packages/a4/09/7ace3936cb1b9f28bf25c5a49055bcec47e699983e7b844580a418317310/ray-0.8.4-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "4f0b7067fb54d81b404de4b01ef5f17b", "sha256": "514430b4806a1dacf7934d8094de0a6df00cd6f5f869c86bdd64526705134bec" }, "downloads": -1, "filename": "ray-0.8.5-cp35-cp35m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "4f0b7067fb54d81b404de4b01ef5f17b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 51549986, "upload_time": "2020-05-07T17:32:52", "upload_time_iso_8601": "2020-05-07T17:32:52.654237Z", "url": "https://files.pythonhosted.org/packages/29/50/c4da1377d90d2576a268015ba79ae21d2a75221bccbf2591b8a8b27d24b0/ray-0.8.5-cp35-cp35m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60905acdf746359ecc1f7cf59b35c4e6", "sha256": "91f33d315f3e6551dd4130816cdc90ae4007923c4379012811f2600362d1608e" }, "downloads": -1, "filename": "ray-0.8.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "60905acdf746359ecc1f7cf59b35c4e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21196871, "upload_time": "2020-05-07T17:32:58", "upload_time_iso_8601": "2020-05-07T17:32:58.505338Z", "url": "https://files.pythonhosted.org/packages/89/1d/a394c72e6ae113752553756443107de4f7913c13cfb8bc3cd1e78823ca9a/ray-0.8.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c353207145cadd14309a99088e8a6ef0", "sha256": "5076d98922363410eefcd17cf99cbc2436d54a3e4d8eb64a2511d0b1ca5f6450" }, "downloads": -1, "filename": "ray-0.8.5-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "c353207145cadd14309a99088e8a6ef0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 51566392, "upload_time": "2020-05-07T17:33:06", "upload_time_iso_8601": "2020-05-07T17:33:06.795514Z", "url": "https://files.pythonhosted.org/packages/79/2c/3b00cfb7794b9284f94899a597eb7d593b8b1b5c0c5ec231544346642256/ray-0.8.5-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30f94f761af738187300134605c765a7", "sha256": "f35b8d3c9c080768e4487bc922614263a4f5856a5bccf11cb3fd27ef41c21cf9" }, "downloads": -1, "filename": "ray-0.8.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "30f94f761af738187300134605c765a7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21197822, "upload_time": "2020-05-07T17:33:12", "upload_time_iso_8601": "2020-05-07T17:33:12.553917Z", "url": "https://files.pythonhosted.org/packages/94/e4/f91074d5faca7532064dd8f01bf3bc6bffaf5cc81b9605c85f8b1bb6c841/ray-0.8.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2ae0338c7bf8dada364b98c49f09442", "sha256": "19ea633abddf78a7bcdf8955ff29e3756d69d310ce54cba128d7062f3bc45e1c" }, "downloads": -1, "filename": "ray-0.8.5-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "e2ae0338c7bf8dada364b98c49f09442", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 51511222, "upload_time": "2020-05-07T17:33:20", "upload_time_iso_8601": "2020-05-07T17:33:20.252143Z", "url": "https://files.pythonhosted.org/packages/62/f3/c324d563557fb0b25f3803efe504893ecdca4e2f7298d1a8cb7997d1379b/ray-0.8.5-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "512f1892f9b09ccf7a032c1b0228a69f", "sha256": "77d9d4b23f92eedb329c8400069b3cc6994e00f7397e4d9eb1fc8fbc8969b73d" }, "downloads": -1, "filename": "ray-0.8.5-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "512f1892f9b09ccf7a032c1b0228a69f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21195618, "upload_time": "2020-05-07T17:33:25", "upload_time_iso_8601": "2020-05-07T17:33:25.264985Z", "url": "https://files.pythonhosted.org/packages/dd/98/be69dd5b97858afb6296088eac0db9776412c5e56d26f5c2d87a74f2681e/ray-0.8.5-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acc7ad11211256b2b5c60c07f08d1ad8", "sha256": "a40afa5cdd80b7a9b13f50cd45b4920fd66724df5974ef4a851dea1710c0e34a" }, "downloads": -1, "filename": "ray-0.8.5-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "acc7ad11211256b2b5c60c07f08d1ad8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 51468344, "upload_time": "2020-05-07T17:33:33", "upload_time_iso_8601": "2020-05-07T17:33:33.651102Z", "url": "https://files.pythonhosted.org/packages/d8/b5/e259a70a44eba90caebaf4e6f627fe542a74fc7492a5795abf113ba29142/ray-0.8.5-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3581229fadb60851b53ffe511c6ace7", "sha256": "36cf5db96011c4827915a7a2b3ff7b29718909d257e902657df6d4f79d563e24" }, "downloads": -1, "filename": "ray-0.8.5-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f3581229fadb60851b53ffe511c6ace7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 21212878, "upload_time": "2020-05-07T17:33:39", "upload_time_iso_8601": "2020-05-07T17:33:39.028868Z", "url": "https://files.pythonhosted.org/packages/ed/e6/19fa5585c9b05ef9911005b7d06970f3903afe98b2f91798c8de004cd50f/ray-0.8.5-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "3cb2107324ed78bdc2388cacdbdec1a1", "sha256": "28bddf09debbc82ff19e1523ada131e7beaf2170f2d88cea72601ff11ff71757" }, "downloads": -1, "filename": "ray-0.8.6-cp35-cp35m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "3cb2107324ed78bdc2388cacdbdec1a1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 53413185, "upload_time": "2020-06-24T16:29:29", "upload_time_iso_8601": "2020-06-24T16:29:29.502095Z", "url": "https://files.pythonhosted.org/packages/1b/87/bfcb47459907a1ea59c1469a07dc1598fe3584cee4e9b236a9d10eebd02f/ray-0.8.6-cp35-cp35m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13527ce4a919a565d720792c32a87472", "sha256": "3a282f770855a56d3ede321ccb6e4a4b48eccb1daead9aa08c20c457ec186d27" }, "downloads": -1, "filename": "ray-0.8.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "13527ce4a919a565d720792c32a87472", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 21908197, "upload_time": "2020-06-24T16:29:35", "upload_time_iso_8601": "2020-06-24T16:29:35.460447Z", "url": "https://files.pythonhosted.org/packages/68/14/2d65d5468593ae5a6e210507777042367cba9a8ba5e6d5dcab5313653423/ray-0.8.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a05d5a5923a1f2d8f60a22fc17a6cf4", "sha256": "fdd4b994ffa894dfe582107b230d515c05ca41ecb2152f28e6c893d4edcc8369" }, "downloads": -1, "filename": "ray-0.8.6-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "1a05d5a5923a1f2d8f60a22fc17a6cf4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53422955, "upload_time": "2020-06-24T16:29:45", "upload_time_iso_8601": "2020-06-24T16:29:45.486997Z", "url": "https://files.pythonhosted.org/packages/85/ad/d4f494c7ac008e0a13f8a2ed44f5bc97e247ac457b49845d9e7922e4b973/ray-0.8.6-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52b678134b7d40291bf1405a41ba9879", "sha256": "dfd01dec0eddd446c1a22f979bf7ced185149f92d761d742592b4fc887dc439c" }, "downloads": -1, "filename": "ray-0.8.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "52b678134b7d40291bf1405a41ba9879", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21912969, "upload_time": "2020-06-24T16:29:52", "upload_time_iso_8601": "2020-06-24T16:29:52.910505Z", "url": "https://files.pythonhosted.org/packages/ea/0b/f253e92aee1225d9d0ef21dd15514352ce87f6dbc55de70707bc9d52477f/ray-0.8.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac6fd5ff2487332056df6d8206edc710", "sha256": "aaf43089881dc203c56c2bec499c9b425a989894bf2b39d767a5c0825a4a5af2" }, "downloads": -1, "filename": "ray-0.8.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ac6fd5ff2487332056df6d8206edc710", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 16105377, "upload_time": "2020-06-24T16:29:58", "upload_time_iso_8601": "2020-06-24T16:29:58.233927Z", "url": "https://files.pythonhosted.org/packages/d8/45/2f44b7b06a7aef7523aa7cc7db9e57f2c101d8406a5fdd8bc9eab424d18a/ray-0.8.6-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "018917d87c303308a9b329e8f5680d69", "sha256": "e79bb29c6d93bc24253a75196a86201471f8ca461102e957cee71ec999fb06cf" }, "downloads": -1, "filename": "ray-0.8.6-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "018917d87c303308a9b329e8f5680d69", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53367495, "upload_time": "2020-06-24T16:30:08", "upload_time_iso_8601": "2020-06-24T16:30:08.984744Z", "url": "https://files.pythonhosted.org/packages/da/bd/4847fcc216cb385672587c2af86afddc8ee4e20410b093f086b6f6ec97be/ray-0.8.6-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1eb1098b59c5c2959d55e9ef0f20062", "sha256": "c007b1e87ef6af7ac684ecb9c2be27bcc5cd881b89ebdc3ea2d99047ffc1eeee" }, "downloads": -1, "filename": "ray-0.8.6-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f1eb1098b59c5c2959d55e9ef0f20062", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21911139, "upload_time": "2020-06-24T16:30:16", "upload_time_iso_8601": "2020-06-24T16:30:16.803629Z", "url": "https://files.pythonhosted.org/packages/08/45/6d66cf6edcb9005884448b22d8dac762ceb4d425f8bdba9129b4117b182d/ray-0.8.6-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e469ec21d86f61db36202d4dd3c08fd9", "sha256": "402ed1be4363cc4494b7022524158f862f3e052d249497ac1145b4452ff08ebe" }, "downloads": -1, "filename": "ray-0.8.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e469ec21d86f61db36202d4dd3c08fd9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 16080521, "upload_time": "2020-06-24T16:30:20", "upload_time_iso_8601": "2020-06-24T16:30:20.571728Z", "url": "https://files.pythonhosted.org/packages/dc/74/5831501456b7ee96ccf0ca844d65bd62176a3ca74be4b619e286ec5c7d31/ray-0.8.6-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e721d5053f48c1acf621a60812aaf86e", "sha256": "9124994117fe26d12c0873737b19fdf6d80b7d283d53d85d1662bb6c98a0b418" }, "downloads": -1, "filename": "ray-0.8.6-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "e721d5053f48c1acf621a60812aaf86e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53204537, "upload_time": "2020-06-24T16:30:34", "upload_time_iso_8601": "2020-06-24T16:30:34.897276Z", "url": "https://files.pythonhosted.org/packages/68/49/de5d45e32d09187f89e32554ded7ed5a361eaedfd37368caeb72123d8c12/ray-0.8.6-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5dc8fdf82504ee794369b6b2c7297238", "sha256": "efaf70097d6e61d0f3d05acb59b6f3a627a3d8a326f1c5d212c93a7231e41d67" }, "downloads": -1, "filename": "ray-0.8.6-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5dc8fdf82504ee794369b6b2c7297238", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 21925647, "upload_time": "2020-06-24T16:30:40", "upload_time_iso_8601": "2020-06-24T16:30:40.788658Z", "url": "https://files.pythonhosted.org/packages/9c/25/d06efc414db3a95e89a52732b6dd07d502d9a0bd52061fd4344a421dc5a8/ray-0.8.6-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0a66bc50373b29d79375a4d732fd9fa", "sha256": "dbf79b7c4d7834bc5c506c397b8f03ecfe9b03e3e4611fe37d725a6e6ccb5649" }, "downloads": -1, "filename": "ray-0.8.6-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "d0a66bc50373b29d79375a4d732fd9fa", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15976567, "upload_time": "2020-06-24T16:30:44", "upload_time_iso_8601": "2020-06-24T16:30:44.756760Z", "url": "https://files.pythonhosted.org/packages/f6/1d/d7bf317f6317571ad63cadd350daef584de290d235bf57488ef22d91e226/ray-0.8.6-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "80c1c48a78a7b6b9e0a5803b6e46a987", "sha256": "357e9ffdd1bd9efc69b21ff8710bec8ad3a37c26cc53b047f0520217d0093016" }, "downloads": -1, "filename": "ray-0.8.7-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "80c1c48a78a7b6b9e0a5803b6e46a987", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55491922, "upload_time": "2020-08-13T17:08:20", "upload_time_iso_8601": "2020-08-13T17:08:20.461524Z", "url": "https://files.pythonhosted.org/packages/87/f1/523ea16f53a4f50cf19001f712916e576f22672fc085eb0d88634d9adc0a/ray-0.8.7-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ebe6f0f3f50ede4dc1f5900670a45e4", "sha256": "fb2d38b0b95ed3c61071b7cd1876c255bc7697b724a0f8988c6a3bd954899bff" }, "downloads": -1, "filename": "ray-0.8.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2ebe6f0f3f50ede4dc1f5900670a45e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22040386, "upload_time": "2020-08-13T17:08:29", "upload_time_iso_8601": "2020-08-13T17:08:29.073477Z", "url": "https://files.pythonhosted.org/packages/fa/c7/3fb709223d1eae040845abb1bc825d76c3f18ade046063382bc6ace603ef/ray-0.8.7-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ff245d171f5cd0159dd28776b799586", "sha256": "f247c836a633ca6894d8a48724bba14dd14ce8f9f13fe3182033dfdd4c3ada65" }, "downloads": -1, "filename": "ray-0.8.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0ff245d171f5cd0159dd28776b799586", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14188481, "upload_time": "2020-08-13T17:08:37", "upload_time_iso_8601": "2020-08-13T17:08:37.525294Z", "url": "https://files.pythonhosted.org/packages/cb/39/f489a39ce89a31687717b352b7073c4f0168f4f0bdf04ba43bfabfd8e623/ray-0.8.7-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbf8ea9387b7c4270d708d319356128f", "sha256": "6440b640866d0f89f72fafb355124d856e2f7aabe3af4902a9bf7ca76426fc41" }, "downloads": -1, "filename": "ray-0.8.7-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "cbf8ea9387b7c4270d708d319356128f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55434338, "upload_time": "2020-08-13T17:09:01", "upload_time_iso_8601": "2020-08-13T17:09:01.415423Z", "url": "https://files.pythonhosted.org/packages/31/56/880421c49947916bfdbbcb4bd0122d3c0576711f420262df5650159c606a/ray-0.8.7-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e5ca555c7e627fe328f3d1aaf1fb556", "sha256": "2db0e331f4896663afca6e219cb7a476c21f2c873f4f342d54b2c160944c578b" }, "downloads": -1, "filename": "ray-0.8.7-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7e5ca555c7e627fe328f3d1aaf1fb556", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22039237, "upload_time": "2020-08-13T17:09:14", "upload_time_iso_8601": "2020-08-13T17:09:14.551898Z", "url": "https://files.pythonhosted.org/packages/c5/6f/3c040c1f29ab11163c89d296b6e8bf09448749d2201207f7e0a33050545a/ray-0.8.7-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71ff232f91dd73c1d26847d0f6eb7630", "sha256": "629e5e7e87ae68099f439c0d5be40412c50548505f7c650ec5d825204c428be1" }, "downloads": -1, "filename": "ray-0.8.7-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "71ff232f91dd73c1d26847d0f6eb7630", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14189191, "upload_time": "2020-08-13T17:09:22", "upload_time_iso_8601": "2020-08-13T17:09:22.396289Z", "url": "https://files.pythonhosted.org/packages/e2/bd/8dbe8a02c7a56b11554fce6da92151d68e508b6c57809693a4c5170b975a/ray-0.8.7-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1fb8260f72bb2bbc5bb26dda2dd37ee", "sha256": "68cadb48978c8e74247ff7fe609e327140116e99af5edeea8a21f3481f29cae8" }, "downloads": -1, "filename": "ray-0.8.7-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "e1fb8260f72bb2bbc5bb26dda2dd37ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 55270731, "upload_time": "2020-08-13T17:09:48", "upload_time_iso_8601": "2020-08-13T17:09:48.977511Z", "url": "https://files.pythonhosted.org/packages/08/2e/20267222a34c574815b83117759e6f3fcc3a9d4061b442ea4a9d7b514a11/ray-0.8.7-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6899d93ae9729ba63e6949f0462d9e2", "sha256": "7567bf67cacf0fc8174fdd1073881716943b9dc40821a276dcfac9cc7c893aa5" }, "downloads": -1, "filename": "ray-0.8.7-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a6899d93ae9729ba63e6949f0462d9e2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 22056215, "upload_time": "2020-08-13T17:10:03", "upload_time_iso_8601": "2020-08-13T17:10:03.915839Z", "url": "https://files.pythonhosted.org/packages/cc/a6/7249aebe16a88ff14cfea3299fbc679c57acada878fe84f0384f7f021be0/ray-0.8.7-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c08ad6d6dc750b5b83cacf54e4ccc92", "sha256": "7df38c686e96c6782d9f582b901070721768318adb1eb2e0f8b537742dca78e6" }, "downloads": -1, "filename": "ray-0.8.7-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "1c08ad6d6dc750b5b83cacf54e4ccc92", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14084517, "upload_time": "2020-08-13T17:10:20", "upload_time_iso_8601": "2020-08-13T17:10:20.094897Z", "url": "https://files.pythonhosted.org/packages/87/c6/b2b1d61e091f8d6585f1c4f9d5a222d220212579c99c72f3ffdc7ceaed2d/ray-0.8.7-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "2fcf45783e8d103c6b1e2477f6814710", "sha256": "0980987239e86bbadd657250423b3c7e1ea74166a78fed5976d44de7f4331683" }, "downloads": -1, "filename": "ray-1.0.0-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "2fcf45783e8d103c6b1e2477f6814710", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 45072135, "upload_time": "2020-09-30T15:13:09", "upload_time_iso_8601": "2020-09-30T15:13:09.409464Z", "url": "https://files.pythonhosted.org/packages/e8/50/b840380180854fa1d93178e6d409bacc75a043853acb7aa8e9b8d455c224/ray-1.0.0-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8c136543b515b9ca2aa0866f173591a", "sha256": "250ab7926d0b7899cbc6b0d184385243109316588858d8a6f2c5a9293cecebf2" }, "downloads": -1, "filename": "ray-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c8c136543b515b9ca2aa0866f173591a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22858458, "upload_time": "2020-09-30T15:13:14", "upload_time_iso_8601": "2020-09-30T15:13:14.489202Z", "url": "https://files.pythonhosted.org/packages/ea/ed/ff896981d4ac684614236f73c1a20cde5f6cb0e2a590c182f62b22706ab4/ray-1.0.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62aa1c70b29a0f4b2d82ba4a9fe4923f", "sha256": "9dd1362a3b1d6585420f2d9ad42914603c82ba98dc545170584d1d81f0524f67" }, "downloads": -1, "filename": "ray-1.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "62aa1c70b29a0f4b2d82ba4a9fe4923f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14710813, "upload_time": "2020-09-30T15:13:18", "upload_time_iso_8601": "2020-09-30T15:13:18.022127Z", "url": "https://files.pythonhosted.org/packages/d0/fa/3b9bca29cb9191abd5f75412c342119874e7ea359211940e91e7070b293a/ray-1.0.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9126cdd42c296945df56b17692383cc", "sha256": "920cc9f548bb027f9b63653ea7383f415cbc0f421e4c0da5d98d88e74740ecb5" }, "downloads": -1, "filename": "ray-1.0.0-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "e9126cdd42c296945df56b17692383cc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 45012351, "upload_time": "2020-09-30T15:13:23", "upload_time_iso_8601": "2020-09-30T15:13:23.731347Z", "url": "https://files.pythonhosted.org/packages/c6/d5/9600475a6acd6d0557479e17b816cb34ef4bdbc35dce2781e74f7b24dbd5/ray-1.0.0-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b02070cc879849d0e80049f765ec5a28", "sha256": "2b2e0ee5e655c554fe64e46e1d74b542a1146941dddebb1f6c92a69124c3acb9" }, "downloads": -1, "filename": "ray-1.0.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b02070cc879849d0e80049f765ec5a28", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22856751, "upload_time": "2020-09-30T15:13:28", "upload_time_iso_8601": "2020-09-30T15:13:28.030686Z", "url": "https://files.pythonhosted.org/packages/3a/56/4ed88c41b90a285f056a0433eca7eaecb1783afea0dc9a601bb46389758f/ray-1.0.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b6ee6cdb37c9ce4ccdae8736914b09d", "sha256": "9dfae047d6943020117b1f7334ea1ac3deeefcbf2e1223e3052565caddd3022a" }, "downloads": -1, "filename": "ray-1.0.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7b6ee6cdb37c9ce4ccdae8736914b09d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14712247, "upload_time": "2020-09-30T15:13:31", "upload_time_iso_8601": "2020-09-30T15:13:31.346780Z", "url": "https://files.pythonhosted.org/packages/44/3c/be7a5dcecd50b952b863972432ca53dff890c78a1428d157e4e577a9e872/ray-1.0.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1665a070e05b5006e42fda93bfbc04c", "sha256": "15bc3e3c0261d2722c72e63293591ea37fded51f7bf882274ff7cfcca9e135fd" }, "downloads": -1, "filename": "ray-1.0.0-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a1665a070e05b5006e42fda93bfbc04c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 44848521, "upload_time": "2020-09-30T15:13:36", "upload_time_iso_8601": "2020-09-30T15:13:36.950853Z", "url": "https://files.pythonhosted.org/packages/29/f7/ceec0eeb1cb1c2768a1bbbe59b156b5a4a4cbb927cbab4f9f78534289e84/ray-1.0.0-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99371cd6679d01a9b5aa72b51edc1809", "sha256": "7561b3109aaecf11d4c32c1ebbc8f5a496e596851eb37ebea81cabadc3d84758" }, "downloads": -1, "filename": "ray-1.0.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "99371cd6679d01a9b5aa72b51edc1809", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 22874370, "upload_time": "2020-09-30T15:13:42", "upload_time_iso_8601": "2020-09-30T15:13:42.186423Z", "url": "https://files.pythonhosted.org/packages/bc/7a/97bb30ba613982b38fc9a61d11559ac1b2346f660b67e07b55db688a1f43/ray-1.0.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1e06b1323b3288c44338d5a6c742c68", "sha256": "5ab4b2b09cc008664ca019e08ab4855ca4e4fcab9db1db43f83d0820d757ba76" }, "downloads": -1, "filename": "ray-1.0.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "c1e06b1323b3288c44338d5a6c742c68", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14607985, "upload_time": "2020-09-30T15:13:45", "upload_time_iso_8601": "2020-09-30T15:13:45.922897Z", "url": "https://files.pythonhosted.org/packages/5d/9b/aa4c8520aa7162eee88b263c1f99601fb09391da507cd3f5a37a4afcc8ca/ray-1.0.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.0rc0": [ { "comment_text": "", "digests": { "md5": "c6a6c56d60d3df0a9b20c0738d42c3e0", "sha256": "942d7eb9c030991027930207db346d4da7176313f3aa2a5df2d5b9fbf0a9e9cf" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "c6a6c56d60d3df0a9b20c0738d42c3e0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 57851831, "upload_time": "2020-09-17T19:11:43", "upload_time_iso_8601": "2020-09-17T19:11:43.336459Z", "url": "https://files.pythonhosted.org/packages/c6/9e/24c1025b7b2b14a1448ae610ac8a91d16bca82a966469ca8a053f51937fb/ray-1.0.0rc0-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a721d8e68560f2cd8f0b287c8cecad55", "sha256": "9d660b2bc6c1b47000e5dac454c4d2ec3514a3b5035cb58df7ccfb582eba0573" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a721d8e68560f2cd8f0b287c8cecad55", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22863218, "upload_time": "2020-09-17T19:12:23", "upload_time_iso_8601": "2020-09-17T19:12:23.272415Z", "url": "https://files.pythonhosted.org/packages/a7/25/922c090806917ef4d5247526615665577dd65df8439f30db3da5aa14c4f4/ray-1.0.0rc0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "050faf8c99bfd49cb25b4a3cb8253151", "sha256": "be5e0ef778df137483a80c5eb0c8337504ff24a304853f98b09fa86c9e885b80" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "050faf8c99bfd49cb25b4a3cb8253151", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14714254, "upload_time": "2020-09-17T19:12:27", "upload_time_iso_8601": "2020-09-17T19:12:27.919151Z", "url": "https://files.pythonhosted.org/packages/03/fd/28d4456abf523f44aea96543e9223d933a70deae9fdfd72db4233a8305e6/ray-1.0.0rc0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8f7b990cc4790d75b783679fdce4753", "sha256": "6c468684258659d261010702e637106bcb6015694a68e2991c770ed7a553165b" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "c8f7b990cc4790d75b783679fdce4753", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 57792834, "upload_time": "2020-09-17T19:13:30", "upload_time_iso_8601": "2020-09-17T19:13:30.554008Z", "url": "https://files.pythonhosted.org/packages/1c/48/02ee1fa06b00d25f988925881522bf40547838f92c65b99175f5891d7d05/ray-1.0.0rc0-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3ce1193f924d11f504c5cafd94494ea", "sha256": "c932bf8d73965665b5fe7435ae870f72ef94bee0a85af0a60296d7757f634a7a" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c3ce1193f924d11f504c5cafd94494ea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22861055, "upload_time": "2020-09-17T19:13:35", "upload_time_iso_8601": "2020-09-17T19:13:35.858791Z", "url": "https://files.pythonhosted.org/packages/3b/38/f9dbe2f3e3b2e17f04e389b8a958b247264842b5fc455aa7a35354e4f7cb/ray-1.0.0rc0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c94c49bc0ce90ad014e2f723a9322b68", "sha256": "a029852ac4ce5bf6e139a4e0bc73513367eac4627d2573ef78f9f0051849f725" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c94c49bc0ce90ad014e2f723a9322b68", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14715339, "upload_time": "2020-09-17T19:13:41", "upload_time_iso_8601": "2020-09-17T19:13:41.623218Z", "url": "https://files.pythonhosted.org/packages/7f/a6/bfff5d4a5b48ad3742c0fe87ea2d14b7cf0d17aadd54307c1ca67007b2fd/ray-1.0.0rc0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3cddfb4abc59b7e827506ab59e8e601", "sha256": "59a0687b970ccf2d367b46f3b1fccd46db8ed5ebe018664ecf56f5c71d3dae7d" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "d3cddfb4abc59b7e827506ab59e8e601", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 57628760, "upload_time": "2020-09-17T19:13:51", "upload_time_iso_8601": "2020-09-17T19:13:51.398138Z", "url": "https://files.pythonhosted.org/packages/43/c8/eb9600966c11905b56bf8a1cea4f67c59c2bdf80b0ec97aaebbb0f7883a9/ray-1.0.0rc0-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88a323676dbac56ac150eb2e46e0ac25", "sha256": "008b45510dba4144ba66fda7aef24db904ee4842a6f94bc5f40715fde0077270" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "88a323676dbac56ac150eb2e46e0ac25", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 22878142, "upload_time": "2020-09-17T19:13:56", "upload_time_iso_8601": "2020-09-17T19:13:56.882780Z", "url": "https://files.pythonhosted.org/packages/d9/1e/730962fadeaacc035c4750a5e5769e97bfe74a5516e12fe59e1e0a074312/ray-1.0.0rc0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dd458769c51e2cb426cdcafa01407be", "sha256": "5a7c43932500d3707638c68730669051d7fe5cd428c4bd51d8633a8e81fd0e4b" }, "downloads": -1, "filename": "ray-1.0.0rc0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "4dd458769c51e2cb426cdcafa01407be", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14611378, "upload_time": "2020-09-17T19:14:01", "upload_time_iso_8601": "2020-09-17T19:14:01.109092Z", "url": "https://files.pythonhosted.org/packages/0c/0f/13c9345e9b15e1cc433a1b89f89c734d7aeab350eb9d818879290296d44f/ray-1.0.0rc0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.0rc1": [ { "comment_text": "", "digests": { "md5": "cdb9d89ca7040d94d10a634962c8a075", "sha256": "86fb97ad55c7a694d5acd22e8c8961649c3e9c7e07c2f09ee872f06153cb5444" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "cdb9d89ca7040d94d10a634962c8a075", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 45077258, "upload_time": "2020-09-21T23:58:12", "upload_time_iso_8601": "2020-09-21T23:58:12.854992Z", "url": "https://files.pythonhosted.org/packages/8b/8c/aba6f954fd973ab0773aa449c5e880b04acd4a640ba475cc77f446a626bf/ray-1.0.0rc1-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "245ea68df70aacd7b8f330110db53d42", "sha256": "1f874115c861e25ba247bad46985d32f8c3be7300d0550992dc46b2299755c98" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "245ea68df70aacd7b8f330110db53d42", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22862584, "upload_time": "2020-09-21T23:58:17", "upload_time_iso_8601": "2020-09-21T23:58:17.710010Z", "url": "https://files.pythonhosted.org/packages/f8/8f/cd7634a78bf2f825dd809fdf8c9167ef715f3c5ca834f726cda4861edb19/ray-1.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd5351393f8dc754bf2e692f590fb839", "sha256": "4a453ff9a2846f3b6160eb5e8acd29d3645a840ba742eaba2a1475df092971a5" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dd5351393f8dc754bf2e692f590fb839", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14715031, "upload_time": "2020-09-21T23:58:21", "upload_time_iso_8601": "2020-09-21T23:58:21.180614Z", "url": "https://files.pythonhosted.org/packages/ff/ac/6d91b1bfabb36bbbbc7e6ce273c1a81f471c7aac1e8f1e4934aabba26a16/ray-1.0.0rc1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e59c827f2de202b462034639123a5fab", "sha256": "075e8baa0cf2f599d785818a5ef9d2c2418d69c15d5428ab92fa7d0b8144fecf" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "e59c827f2de202b462034639123a5fab", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 45017369, "upload_time": "2020-09-21T23:58:28", "upload_time_iso_8601": "2020-09-21T23:58:28.675135Z", "url": "https://files.pythonhosted.org/packages/c5/01/5b4c4bc38450fc9d57a03c214c1c57d70c16bf8079be8f39d65e057d130a/ray-1.0.0rc1-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c06d47265e3720db462ccd98601c271a", "sha256": "938c77a14bcc7c151489172823f8ed956a0fb9b5b432e94612ef7dff9a364f66" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c06d47265e3720db462ccd98601c271a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22861107, "upload_time": "2020-09-21T23:58:33", "upload_time_iso_8601": "2020-09-21T23:58:33.888622Z", "url": "https://files.pythonhosted.org/packages/cf/04/27a2a5207daa6d5bf165b10bfbc59115eb0139106ab967bb71c86d23b8c4/ray-1.0.0rc1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ce9472859062ee4dfcc59840234b950", "sha256": "ce749ada6227ec9d340228140fb470cd8995b3dd695b129e961a4c1df98d799d" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "9ce9472859062ee4dfcc59840234b950", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14716432, "upload_time": "2020-09-21T23:58:37", "upload_time_iso_8601": "2020-09-21T23:58:37.583277Z", "url": "https://files.pythonhosted.org/packages/da/86/8bf3c4236ffc6f12257bb4461f1a494912889d4771ac35d1972d0983a27e/ray-1.0.0rc1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41825f983654ca42f4802714e4200044", "sha256": "0ce9377525e8e0d054c68dc58b078573616c0871f4597883eb247f987ab1a7bb" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "41825f983654ca42f4802714e4200044", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 44853794, "upload_time": "2020-09-21T23:58:43", "upload_time_iso_8601": "2020-09-21T23:58:43.551307Z", "url": "https://files.pythonhosted.org/packages/fd/83/81ec71a6b2b6fc5e146bcbc2d277ac350f02d1c37b1e785acd6111d2a3d1/ray-1.0.0rc1-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9179cef5071489a18d431e2ecc93e52b", "sha256": "95680450061c17b06ca91aec0e8e05130d4aee6aad4e1d0abbed095a81770e25" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9179cef5071489a18d431e2ecc93e52b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 22878624, "upload_time": "2020-09-21T23:58:48", "upload_time_iso_8601": "2020-09-21T23:58:48.146714Z", "url": "https://files.pythonhosted.org/packages/68/2b/f91eeb9ffdad03013bd26f9043462e993efec45fe5b80410df5086f26bef/ray-1.0.0rc1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00224a930016a56859aaf9a53440f182", "sha256": "7ab4145561007301f4715bbf5f9ddb782a9ab7fd46b6ca93850d594b66eb45d9" }, "downloads": -1, "filename": "ray-1.0.0rc1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "00224a930016a56859aaf9a53440f182", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14611991, "upload_time": "2020-09-21T23:58:51", "upload_time_iso_8601": "2020-09-21T23:58:51.216698Z", "url": "https://files.pythonhosted.org/packages/1d/4d/d9ba72d8aa50d15675c22d229abe062026d3f6c8e2290336d3b207b88332/ray-1.0.0rc1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.0rc2": [ { "comment_text": "", "digests": { "md5": "2f452d3cf4865160cd6009550a63e92b", "sha256": "a039677d0d49bb3825e11765c052e34c8c0bb6825aa229141ff229c161579e77" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "2f452d3cf4865160cd6009550a63e92b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 45080681, "upload_time": "2020-09-23T04:38:40", "upload_time_iso_8601": "2020-09-23T04:38:40.794215Z", "url": "https://files.pythonhosted.org/packages/29/92/83d572bfbe155c637854b6397cf45946093994a8c70e402e790756be9407/ray-1.0.0rc2-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00da3e3209e9bf446a0b0c7c0ca14290", "sha256": "ad5d69261582a2330c587cfa3635556dd48a7489f71ab81de3df8945a62f00b8" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "00da3e3209e9bf446a0b0c7c0ca14290", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22864126, "upload_time": "2020-09-23T04:38:46", "upload_time_iso_8601": "2020-09-23T04:38:46.941024Z", "url": "https://files.pythonhosted.org/packages/00/93/e2dbe06ffcc6dcaa53a45b93e08e0cd57e97f4ea9535eb78018101671395/ray-1.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5b6fe879aa99d41afcb657b04b9d631", "sha256": "7b7ea0b732ed8299ae5f4b43205ae446c29d87b8994fb4dd6ce28fa571ec4a2d" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d5b6fe879aa99d41afcb657b04b9d631", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14716346, "upload_time": "2020-09-23T04:38:50", "upload_time_iso_8601": "2020-09-23T04:38:50.856628Z", "url": "https://files.pythonhosted.org/packages/16/14/29df552cc7da789fb0b5ac50e24fc9895445f72ed59eaacfaa31a295e24b/ray-1.0.0rc2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8def5d75f475a1ae1e4e93ee8d5e53cc", "sha256": "f1710f32c6b756a749cfb1ad4185b9596cab9ae67a8ec975ec79e1474a9e6d9b" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "8def5d75f475a1ae1e4e93ee8d5e53cc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 45020814, "upload_time": "2020-09-23T04:38:57", "upload_time_iso_8601": "2020-09-23T04:38:57.424391Z", "url": "https://files.pythonhosted.org/packages/9b/85/d9b873a9a2963453725cfed0f9554abfd42de88ee651d9dc87efc633fdf5/ray-1.0.0rc2-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "affe4958e55c39a93c1ac6e8d74a0532", "sha256": "27f83fe4f2ff080566f33802ea3cf43380afec5f045149261f88e76c373edbe4" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "affe4958e55c39a93c1ac6e8d74a0532", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22862462, "upload_time": "2020-09-23T04:39:03", "upload_time_iso_8601": "2020-09-23T04:39:03.576278Z", "url": "https://files.pythonhosted.org/packages/37/18/00b7b401f73d34a7c77402e46ac082ed0578fb79f2f92aa478b653412d78/ray-1.0.0rc2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d439c91c9cf46b8881f09229a5f1e44", "sha256": "58fa3612e390b01a13bc91a30357a2c005b565b4442151bb50e62338502dc0d2" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0d439c91c9cf46b8881f09229a5f1e44", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14717812, "upload_time": "2020-09-23T04:39:08", "upload_time_iso_8601": "2020-09-23T04:39:08.049375Z", "url": "https://files.pythonhosted.org/packages/dd/76/66b2a244ff1aa8c2f66a9bdfbfff0f91e76a020e485396169ee5beb1fb16/ray-1.0.0rc2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "959145d3882622f0436a9ee76ae7b56a", "sha256": "a5ef2e5a67b569e2b1dba1ab634e9fd4514d3b89276c31645ec373fb053ea45e" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "959145d3882622f0436a9ee76ae7b56a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 44857114, "upload_time": "2020-09-23T04:39:15", "upload_time_iso_8601": "2020-09-23T04:39:15.438600Z", "url": "https://files.pythonhosted.org/packages/10/43/c15497044d0a00b549ad664698b76c2c1e5909cafcf69cc939f3404574c8/ray-1.0.0rc2-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a921b23832c995b805cbd6397557a735", "sha256": "0f80a130579a3022c02121cfa70b273cb48cbb1cae07e88c64dd65b93e2567e6" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a921b23832c995b805cbd6397557a735", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 22880035, "upload_time": "2020-09-23T04:39:20", "upload_time_iso_8601": "2020-09-23T04:39:20.894905Z", "url": "https://files.pythonhosted.org/packages/66/e8/42b1fc9aaa24ea1c79bb61b564413c1cb87142d9c81e08a08ce6d64225b5/ray-1.0.0rc2-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24e98fd25806b4177435d7ac2250e234", "sha256": "019e1418e4541ba0fec5e917ecb5ad6434869b6ed82710bbac291ca28e2dcf26" }, "downloads": -1, "filename": "ray-1.0.0rc2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "24e98fd25806b4177435d7ac2250e234", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14613377, "upload_time": "2020-09-23T04:39:24", "upload_time_iso_8601": "2020-09-23T04:39:24.709327Z", "url": "https://files.pythonhosted.org/packages/93/33/07d1ae9ed4fb51bd03beb209e5fa868b94180f3dc1320843e41e0996b376/ray-1.0.0rc2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "677bf9338ae043f3e2a996db0f36810e", "sha256": "05d55722e5f6174b41a44aecceae556b60666946c6f70e5556fe4ff7bd629381" }, "downloads": -1, "filename": "ray-1.0.1-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "677bf9338ae043f3e2a996db0f36810e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48318673, "upload_time": "2020-11-10T02:15:29", "upload_time_iso_8601": "2020-11-10T02:15:29.572838Z", "url": "https://files.pythonhosted.org/packages/c3/54/e6013c1cf51e7f0e32d4b8dc72c7f88772a52151fbbea768b63af5fe63e6/ray-1.0.1-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1e7c8c91659c110e7aa8db6dbe97f33", "sha256": "6c1e341d2f873be0735b0cc9ee1063e71f2e8220e135950fcc45abb0b592cd5c" }, "downloads": -1, "filename": "ray-1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e1e7c8c91659c110e7aa8db6dbe97f33", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 23094363, "upload_time": "2020-11-10T02:15:41", "upload_time_iso_8601": "2020-11-10T02:15:41.469246Z", "url": "https://files.pythonhosted.org/packages/97/52/0a1894137a0592787f9f5f8a2bee271ee9eb17a3d88baa036dc526165371/ray-1.0.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1a8434c435b9ce80d45696bd2b376c3", "sha256": "fa1f8d437b018d6dbaa7cac9b6cbd4af9b592fa945d7487dafe7fe9702545180" }, "downloads": -1, "filename": "ray-1.0.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e1a8434c435b9ce80d45696bd2b376c3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14848611, "upload_time": "2020-11-10T02:15:49", "upload_time_iso_8601": "2020-11-10T02:15:49.645332Z", "url": "https://files.pythonhosted.org/packages/7c/ae/da9b3486da0d0ad227bff2465257a260bfdbedde984d95432526b90f8c31/ray-1.0.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4258695e1b377b05b4e1f55aeea5a49e", "sha256": "641739a9a5162a2ad83743fa0d6e3e372f6c595e5b7f58a09adc113e44980f95" }, "downloads": -1, "filename": "ray-1.0.1-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "4258695e1b377b05b4e1f55aeea5a49e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 48259503, "upload_time": "2020-11-10T02:16:10", "upload_time_iso_8601": "2020-11-10T02:16:10.951264Z", "url": "https://files.pythonhosted.org/packages/d8/39/ded9180a10602c1cc7fcff2bdd2c1de26b29b80b8f885c2ad144058a5658/ray-1.0.1-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "519bc08d94cda61671c229731507ee90", "sha256": "8ba29033e5e5e7fd8c402b42abb17dc04dfe15398350a1532ef809b0e8ed6a06" }, "downloads": -1, "filename": "ray-1.0.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "519bc08d94cda61671c229731507ee90", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 23091924, "upload_time": "2020-11-10T02:16:22", "upload_time_iso_8601": "2020-11-10T02:16:22.605995Z", "url": "https://files.pythonhosted.org/packages/e8/a6/dda3fca41d3aef408732173889549c131cbfa878beaeebb04ea5e0b8d5ba/ray-1.0.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1953987cf8fdfe2c78c6f1a29bad053", "sha256": "89e69c8593df0de9fa115a366c6cc74ba27c805d8ab3e8817e7f0f4bb40b2da5" }, "downloads": -1, "filename": "ray-1.0.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b1953987cf8fdfe2c78c6f1a29bad053", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14849626, "upload_time": "2020-11-10T02:16:30", "upload_time_iso_8601": "2020-11-10T02:16:30.755866Z", "url": "https://files.pythonhosted.org/packages/45/ca/e01ea51fcc322ffb4dc83f1fafc49b641d8cf8aa2e240b7b87dcd081accd/ray-1.0.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eed0f44d8760d4456b421a6a230cfbfb", "sha256": "b701296894560e12aaa927b3eb4b2a7427552fdbe98f782fb2ba095649840272" }, "downloads": -1, "filename": "ray-1.0.1-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "eed0f44d8760d4456b421a6a230cfbfb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 48094893, "upload_time": "2020-11-10T02:16:51", "upload_time_iso_8601": "2020-11-10T02:16:51.961492Z", "url": "https://files.pythonhosted.org/packages/fd/7e/f27882ca56b69e2a93e5d029db1805aa71ff31cbaf0ac8b962354acf44a0/ray-1.0.1-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e160d3b6a382bd59a8e8a28a43fce4a", "sha256": "9610fbeed52d89b19dd99726d15af5128859c42e644791953f9558031b3e8538" }, "downloads": -1, "filename": "ray-1.0.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3e160d3b6a382bd59a8e8a28a43fce4a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 23105538, "upload_time": "2020-11-10T02:17:04", "upload_time_iso_8601": "2020-11-10T02:17:04.011414Z", "url": "https://files.pythonhosted.org/packages/1f/45/c23f5604bbf8be93b651fbe3534fb7ef98a7acdaa083e877379c46127d07/ray-1.0.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c03cb2d292ad41c4b65adfefbe9ad436", "sha256": "cfb7d13000efc2caf9b2e88faed273123e70f1efe234c14c6d49f818048496ce" }, "downloads": -1, "filename": "ray-1.0.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "c03cb2d292ad41c4b65adfefbe9ad436", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14747832, "upload_time": "2020-11-10T02:17:11", "upload_time_iso_8601": "2020-11-10T02:17:11.806063Z", "url": "https://files.pythonhosted.org/packages/15/49/74e94efa6ceee08356946a1e594606d64f012adfa65fdb99f8316198af1a/ray-1.0.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.0.1.post1": [ { "comment_text": "", "digests": { "md5": "d918b43ce322bb2c570bc778b5bcef88", "sha256": "b8fbab803e7b35b1924b80cbf93f6bd680dfa08954dcf24fd23079d5f43561e2" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "d918b43ce322bb2c570bc778b5bcef88", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48338304, "upload_time": "2020-11-19T22:42:38", "upload_time_iso_8601": "2020-11-19T22:42:38.492416Z", "url": "https://files.pythonhosted.org/packages/5d/ce/7c43d6239f4230f51d1dba2ea69554cc5754bf591dd474a4e2821d290fbe/ray-1.0.1.post1-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f51d7e66c82c069f4fb85a26c34c9db6", "sha256": "1f2505ada0070054378f91fd6092d4cf9f93f893865dcc7a81fa8a34fed0eb5c" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f51d7e66c82c069f4fb85a26c34c9db6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 23106375, "upload_time": "2020-11-19T22:44:04", "upload_time_iso_8601": "2020-11-19T22:44:04.113261Z", "url": "https://files.pythonhosted.org/packages/12/87/44476ad712acc1f7957cbf88d307d4a0283a740487cf85d710d0211d0135/ray-1.0.1.post1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36cef934da320a4a7615046eee83b01d", "sha256": "61fddc7bd37b17104f0bb88a772c157bb14e2dfc82a9a79a9173b784fa689f6f" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "36cef934da320a4a7615046eee83b01d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14860010, "upload_time": "2020-11-19T22:45:05", "upload_time_iso_8601": "2020-11-19T22:45:05.496826Z", "url": "https://files.pythonhosted.org/packages/ef/de/39eeac43f6d656a1c2b0052f0f2af77070945e9908818f172ba1e99d03ef/ray-1.0.1.post1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06796ac498e89e51cbdd6769c45b8711", "sha256": "f482528b4c79fe4eb255ccd802a00902ce711016ee3bd32a7d9d89ca9cf8b42d" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "06796ac498e89e51cbdd6769c45b8711", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 48279152, "upload_time": "2020-11-19T22:47:07", "upload_time_iso_8601": "2020-11-19T22:47:07.415768Z", "url": "https://files.pythonhosted.org/packages/b9/fb/14afe04a4fa92a1ea460f9d12f7ec491666e497133411aef9b9043aa5a76/ray-1.0.1.post1-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88405cbb405f061cdfa1986c2158bbb9", "sha256": "a4f7a7385848d8e747e6b5bb9d7eaf469854ec341dfe81c88858703af7d16516" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "88405cbb405f061cdfa1986c2158bbb9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 23103931, "upload_time": "2020-11-19T22:49:23", "upload_time_iso_8601": "2020-11-19T22:49:23.017628Z", "url": "https://files.pythonhosted.org/packages/d0/8b/c62b46530bab576634277e798dfc6aa1ed441a36f3a16cfd259bee27e8f3/ray-1.0.1.post1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "788c75aeb386356fe30bb5e76d34cc8b", "sha256": "581adb37ee0f88b662f672b06a2ac91b5736087b38b84d64f2191a90a6e177c7" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "788c75aeb386356fe30bb5e76d34cc8b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 14860985, "upload_time": "2020-11-19T22:50:01", "upload_time_iso_8601": "2020-11-19T22:50:01.580880Z", "url": "https://files.pythonhosted.org/packages/64/59/a44a351857faba9c815c3afaca7df356155b77c33da604987c8fde1422ab/ray-1.0.1.post1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18de71545b9613b459e34ef68c5c532a", "sha256": "e1ef2a45143e820766c2600420a7125929939127f830da353afd04f2348f9147" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "18de71545b9613b459e34ef68c5c532a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 48114448, "upload_time": "2020-11-19T22:51:31", "upload_time_iso_8601": "2020-11-19T22:51:31.312578Z", "url": "https://files.pythonhosted.org/packages/fa/83/f708e2195ecfbecf7e830af1336e9086155df385a8be12f71dac7767dddd/ray-1.0.1.post1-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a573b1a88686b0b3abe9f1cd57eb977c", "sha256": "8323a41ff2b6abdebc7220226c6267e0a4b68c3e29f6cd4797d2046143a9cfc7" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a573b1a88686b0b3abe9f1cd57eb977c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 23117425, "upload_time": "2020-11-19T22:51:46", "upload_time_iso_8601": "2020-11-19T22:51:46.106694Z", "url": "https://files.pythonhosted.org/packages/10/7c/9b4fccf414e45fa80a073c92a57e7e8ac1df41702c70b84d02fff1da0f6c/ray-1.0.1.post1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "924b675b055c1b473e23a7d079d782c9", "sha256": "105374a6551a18058cfe77dc09042b8f3df1d56d801db4b6a93ee7b473fc0e94" }, "downloads": -1, "filename": "ray-1.0.1.post1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "924b675b055c1b473e23a7d079d782c9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 14759044, "upload_time": "2020-11-19T22:51:51", "upload_time_iso_8601": "2020-11-19T22:51:51.622290Z", "url": "https://files.pythonhosted.org/packages/c6/23/4e92ff0f09af1f5a63f2af3d08a7dc1162ff0629a98febadfbfaa61ad16c/ray-1.0.1.post1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "51eeb83ac07db0bd5994110761fda3b3", "sha256": "a232253eb2893050067fc37055e5f2b82c856c7c9a32aa21f5bd55c30dc3b14c" }, "downloads": -1, "filename": "ray-1.1.0-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "51eeb83ac07db0bd5994110761fda3b3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49219933, "upload_time": "2020-12-24T10:13:39", "upload_time_iso_8601": "2020-12-24T10:13:39.080265Z", "url": "https://files.pythonhosted.org/packages/ec/92/8aa62eb4ad693a6cbc22520cef1a76aec2a827be037766c371d58c1f8830/ray-1.1.0-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb19ed042c503683bff9e3b445ee3e02", "sha256": "59ede233f6bb3e1e892af9e762a2a606dc8793da8c49c3ab1516426a21e230fc" }, "downloads": -1, "filename": "ray-1.1.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fb19ed042c503683bff9e3b445ee3e02", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 48460007, "upload_time": "2020-12-24T10:14:38", "upload_time_iso_8601": "2020-12-24T10:14:38.921639Z", "url": "https://files.pythonhosted.org/packages/fa/e5/0ff593f053ff4fa2a582961272ef893c21d268d3c2c52ff1e7effd891e48/ray-1.1.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c421062295038de230def545e5a8591c", "sha256": "963d1ea62a101520aa0968d285d93363e324238c8fbb07035b6bac6dc626e636" }, "downloads": -1, "filename": "ray-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c421062295038de230def545e5a8591c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15409224, "upload_time": "2020-12-24T10:15:01", "upload_time_iso_8601": "2020-12-24T10:15:01.822435Z", "url": "https://files.pythonhosted.org/packages/f3/9d/9462e96163f38d1162a3a80449fe1957e40d0cefd8e3e81b8bd1656e6322/ray-1.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef6cabc585967c78cd61f4161ba5579f", "sha256": "c79e62df71503752fabe93466c6d327cfccf090d9e506a0d192ceae6e988e5e6" }, "downloads": -1, "filename": "ray-1.1.0-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "ef6cabc585967c78cd61f4161ba5579f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 49185107, "upload_time": "2020-12-24T10:16:06", "upload_time_iso_8601": "2020-12-24T10:16:06.818816Z", "url": "https://files.pythonhosted.org/packages/49/cd/5bbcd55e53c1591d97d22ee6509225827233c333455f540f904c60790d64/ray-1.1.0-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6731f27a640de15117e315dedd81b334", "sha256": "3fa8498a5381037eac682b27105b16aa1908e296f9dd3c1595c478d70827ec79" }, "downloads": -1, "filename": "ray-1.1.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6731f27a640de15117e315dedd81b334", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 48460810, "upload_time": "2020-12-24T10:17:19", "upload_time_iso_8601": "2020-12-24T10:17:19.807885Z", "url": "https://files.pythonhosted.org/packages/dd/bc/e1ae5b67cd8e0a4ca84f9a59b65b210daf4ed1d9ad69c035f1824aa1256f/ray-1.1.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40fd665d0e47e3e958dd502b30f166d1", "sha256": "6281d06b16920052988f2e01d66a379e705b0c139a16c4e3c0159cf29c6aa789" }, "downloads": -1, "filename": "ray-1.1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "40fd665d0e47e3e958dd502b30f166d1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15411487, "upload_time": "2020-12-24T10:17:40", "upload_time_iso_8601": "2020-12-24T10:17:40.477011Z", "url": "https://files.pythonhosted.org/packages/35/9a/80396dd0050f7992ce239c7759cf658e237de2ae39765d537fcb3c04d68f/ray-1.1.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46ce02463a50f7d6e0be5e99ddde4fbf", "sha256": "1e439230e7d5e10413c189b7d88ed920c8d6ad5629f7e2db6eb4e21df2083273" }, "downloads": -1, "filename": "ray-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "46ce02463a50f7d6e0be5e99ddde4fbf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 49020698, "upload_time": "2020-12-24T10:18:43", "upload_time_iso_8601": "2020-12-24T10:18:43.497034Z", "url": "https://files.pythonhosted.org/packages/5f/39/266fdfacd975807d7186c8334bc0d67d0aab400e253bbc3854f05bc4066d/ray-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37186264d8c9bb8e64a2d3f86892a186", "sha256": "0776c6b7a81794c96238417afc33e8bc5d62d05c56a9ee66708ea414bf62fe0d" }, "downloads": -1, "filename": "ray-1.1.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "37186264d8c9bb8e64a2d3f86892a186", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 48216022, "upload_time": "2020-12-24T10:19:48", "upload_time_iso_8601": "2020-12-24T10:19:48.316559Z", "url": "https://files.pythonhosted.org/packages/96/92/533d16d544729480ac51573ab0a81616d08d42888a2ece0dcd20b7ecf4fb/ray-1.1.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8615b19448f6fc86fb63e3983a8a2a6a", "sha256": "18983d1f77f27e9de256d53be596e92b04fa2e614f3800faf5c92e11484f39ab" }, "downloads": -1, "filename": "ray-1.1.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "8615b19448f6fc86fb63e3983a8a2a6a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15305724, "upload_time": "2020-12-24T10:20:08", "upload_time_iso_8601": "2020-12-24T10:20:08.492657Z", "url": "https://files.pythonhosted.org/packages/1f/71/5afa9b9c8fd39127de3539a9c8a5b4bd9295aec1596ed3e5fbe172dd6daf/ray-1.1.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "3b1280f3fa408f476bde7d42ee6aa32a", "sha256": "e27172af33243604bdb6c95c6a5d005f5a1524de7fc259f17d2340675a18a0a0" }, "downloads": -1, "filename": "ray-1.10.0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "3b1280f3fa408f476bde7d42ee6aa32a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 60986610, "upload_time": "2022-02-04T18:58:12", "upload_time_iso_8601": "2022-02-04T18:58:12.785372Z", "url": "https://files.pythonhosted.org/packages/36/0e/ef1d84b9d9332d2661d04ecd2cf5ca95d3b65f3d91df82aa4a402e4b8903/ray-1.10.0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6306ed87742dbc04fb6ea466dce7693e", "sha256": "9a0e72708277be307c6a7e4628c06d19edbed9c1494bfddfe4990aa71de7caad" }, "downloads": -1, "filename": "ray-1.10.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6306ed87742dbc04fb6ea466dce7693e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 59615322, "upload_time": "2022-02-04T18:58:48", "upload_time_iso_8601": "2022-02-04T18:58:48.282462Z", "url": "https://files.pythonhosted.org/packages/7b/88/21dd82749cd8e9029ba2499f5d25d9618e7ddc172ffd827436a28343bb17/ray-1.10.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7db8610d1d97a0026552a2451884cc9f", "sha256": "81e251c64c5f00aa285b4292d3bab2d8c7ff52b09eaac33e927e2e8d8860961e" }, "downloads": -1, "filename": "ray-1.10.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7db8610d1d97a0026552a2451884cc9f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22914994, "upload_time": "2022-02-04T18:59:04", "upload_time_iso_8601": "2022-02-04T18:59:04.035695Z", "url": "https://files.pythonhosted.org/packages/4f/32/bff4edffe23ef6b098efb85eda35b799a65cdb9f759df37b10825d03fc75/ray-1.10.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c0d05c5946d1ef365cbdda4763dce1f", "sha256": "7b6d63c5e6bfcab725aded6394a654470ca1c2e33114bca24d33494bd754f127" }, "downloads": -1, "filename": "ray-1.10.0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "7c0d05c5946d1ef365cbdda4763dce1f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 60957386, "upload_time": "2022-02-04T18:59:38", "upload_time_iso_8601": "2022-02-04T18:59:38.141982Z", "url": "https://files.pythonhosted.org/packages/0f/92/22f53d15f0c2c4dde978c4b6cdefef154afcc05652e916160f7e364aa68f/ray-1.10.0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c115f9764211a45c385f6b90c864582", "sha256": "033af681fe959f9412d98a2addefee4e196bd194180170f9246b1c7756abebc2" }, "downloads": -1, "filename": "ray-1.10.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0c115f9764211a45c385f6b90c864582", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 59613125, "upload_time": "2022-02-04T19:00:20", "upload_time_iso_8601": "2022-02-04T19:00:20.445079Z", "url": "https://files.pythonhosted.org/packages/2c/47/424bb01aba0643bdcfa33880f5fb91b69f8e9f5ca269b71aeb49343888a6/ray-1.10.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb4eebdeb0782a72842a82031be43cb9", "sha256": "1a310ea9c5d17e04f3ba346bae2901915380455f54bfcd168c3336161cd9fbf7" }, "downloads": -1, "filename": "ray-1.10.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "eb4eebdeb0782a72842a82031be43cb9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22916109, "upload_time": "2022-02-04T19:00:35", "upload_time_iso_8601": "2022-02-04T19:00:35.414847Z", "url": "https://files.pythonhosted.org/packages/84/2b/acbbb739e6a2a3b002cf9df4d062e327c7b72a514299a538800fdb0ae2de/ray-1.10.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ed2c4ed32375126ff74bc7fea37fb56", "sha256": "0c73ec6fc93e58e7f871f01037aa943886d2afde79bd8dbe4f2748c0a9e9cf7e" }, "downloads": -1, "filename": "ray-1.10.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "6ed2c4ed32375126ff74bc7fea37fb56", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 60788327, "upload_time": "2022-02-04T19:01:11", "upload_time_iso_8601": "2022-02-04T19:01:11.684822Z", "url": "https://files.pythonhosted.org/packages/4f/9e/411ca4de24d75784f00d3d179aa13aac016462b3b768a978f6bb02431058/ray-1.10.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eff14c8b765414cb3a5f3ffed697dee7", "sha256": "8445c615c2f621f36bfb78833b5d00caa8ccb77d2cbd8c7d16ebe6e8f7d597ea" }, "downloads": -1, "filename": "ray-1.10.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "eff14c8b765414cb3a5f3ffed697dee7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 27846499, "upload_time": "2022-02-04T19:01:30", "upload_time_iso_8601": "2022-02-04T19:01:30.458322Z", "url": "https://files.pythonhosted.org/packages/5c/5e/0dcb2950775baed4dc610f7dea8e7a668e8be94033e8621fb153438f2d97/ray-1.10.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49b4452ce754763fc6ac2d14ae38e304", "sha256": "e5992bb9128a14d47d2ac104086f07bd90300707b73ce532ce71f8c4c8a2fa4d" }, "downloads": -1, "filename": "ray-1.10.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "49b4452ce754763fc6ac2d14ae38e304", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 59349922, "upload_time": "2022-02-04T19:02:08", "upload_time_iso_8601": "2022-02-04T19:02:08.305168Z", "url": "https://files.pythonhosted.org/packages/33/a3/67d2ded6992fb813e6a85122d20aba9d8514fe7a3e3db427806f412a4737/ray-1.10.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4fdb656a156c31d60c4e7c07b0ae4981", "sha256": "f8cf23ba4f319ca0ea202a74b738bb7e1995cb182100f10458b97a5785cb7290" }, "downloads": -1, "filename": "ray-1.10.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "4fdb656a156c31d60c4e7c07b0ae4981", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 22812518, "upload_time": "2022-02-04T19:02:31", "upload_time_iso_8601": "2022-02-04T19:02:31.106622Z", "url": "https://files.pythonhosted.org/packages/74/1c/05c24cf6875e07149fef69d5f786d5a80f891356985e0ce643a789c719c6/ray-1.10.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80766f99f0172b9f2cb0f58f9cf60cd6", "sha256": "33584a13b175bddd440a12445c369b174bda3f79e3d6a5345d665a622eede0e0" }, "downloads": -1, "filename": "ray-1.10.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "80766f99f0172b9f2cb0f58f9cf60cd6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 60790685, "upload_time": "2022-02-04T19:03:07", "upload_time_iso_8601": "2022-02-04T19:03:07.991372Z", "url": "https://files.pythonhosted.org/packages/57/1e/10e49399808a3c9106c7caea491f8ea7ede81e992380170bf48094f19ce7/ray-1.10.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1e0815593affda7ae4c2a802110c58b", "sha256": "669548bfaae3a0bcc2ddd7b515b874b2a66e4268b0947050b7d6f53794bd2ae3" }, "downloads": -1, "filename": "ray-1.10.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "d1e0815593affda7ae4c2a802110c58b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 27847748, "upload_time": "2022-02-04T19:03:24", "upload_time_iso_8601": "2022-02-04T19:03:24.786747Z", "url": "https://files.pythonhosted.org/packages/ee/59/7413e3952e5a3b83ca48b00793f71c2029aa83ff22af5a09b3729cebd47b/ray-1.10.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ccc35a1492af5036139f4a97a652005", "sha256": "e789b18f179ae573710c718c091a03b51a8c61205e8531b92079a323ac6379a5" }, "downloads": -1, "filename": "ray-1.10.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5ccc35a1492af5036139f4a97a652005", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 59321218, "upload_time": "2022-02-04T19:03:58", "upload_time_iso_8601": "2022-02-04T19:03:58.611020Z", "url": "https://files.pythonhosted.org/packages/68/c0/81a83a7ff5c0b701f1a4250d5660826174d851b51882bc4ad186668ed07d/ray-1.10.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc14a5e3976b9f8534f121bf9bc79b53", "sha256": "db953540f0f7e5e666d263f847b45ad368e9de5ad02da9df4e9e5ee508d5d6b6" }, "downloads": -1, "filename": "ray-1.10.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "cc14a5e3976b9f8534f121bf9bc79b53", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 22812689, "upload_time": "2022-02-04T19:04:13", "upload_time_iso_8601": "2022-02-04T19:04:13.862034Z", "url": "https://files.pythonhosted.org/packages/d8/cd/42cd35ac8e8ad03becc2e43184be64727177742b3e3a30431ed98902d862/ray-1.10.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.10.0rc0": [ { "comment_text": "", "digests": { "md5": "844fe83e641cfde78cf5b35f16908f62", "sha256": "a6589236c2ab105ced29190b927ab2c011db1b24da8868355be9b0ebbeb1cdb7" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "844fe83e641cfde78cf5b35f16908f62", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 61002919, "upload_time": "2022-01-11T23:20:09", "upload_time_iso_8601": "2022-01-11T23:20:09.498547Z", "url": "https://files.pythonhosted.org/packages/b7/aa/20cd251e93f5cbe03c6ea2d68b1dec18ae86dac71102159d8cf5b7fb3663/ray-1.10.0rc0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3805c5d503a33b40c8b8c309edb3b4d", "sha256": "2849e208d0d751500c6d8f632d3b0260b4b9010609bed057bcc4364ba4e08ed3" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e3805c5d503a33b40c8b8c309edb3b4d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 59625464, "upload_time": "2022-01-11T23:20:20", "upload_time_iso_8601": "2022-01-11T23:20:20.441063Z", "url": "https://files.pythonhosted.org/packages/32/a8/2142dd3d4dcf6940f6095872298170359349747295c72df3088bc1d148e9/ray-1.10.0rc0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35bf184a7db9d1e95a1025f991cf8ad6", "sha256": "ace9f370582dddc7d117bf4901610244c594888faf789eda8b1283ef7649509e" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "35bf184a7db9d1e95a1025f991cf8ad6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 22924916, "upload_time": "2022-01-11T23:20:27", "upload_time_iso_8601": "2022-01-11T23:20:27.136892Z", "url": "https://files.pythonhosted.org/packages/8c/35/216c3aab0cbc5c67651a488fc7ccbc709a90161e5d23fad7a0fe170e5ace/ray-1.10.0rc0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef37b26342d700b720842ac70ada1a09", "sha256": "61b47bcac2de9d4d8ce41419979e20c0a2965c6d540036cbad564f48c8599e18" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "ef37b26342d700b720842ac70ada1a09", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 60973580, "upload_time": "2022-01-11T23:20:37", "upload_time_iso_8601": "2022-01-11T23:20:37.939021Z", "url": "https://files.pythonhosted.org/packages/68/0b/a61429da91cc6eb60d79001cd120436bf9101af10417aab163727993440d/ray-1.10.0rc0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2c141ff1d9c76317d67513bc814cb34", "sha256": "c8e55ca1a2230bf28df974f210013fadda20e270840160853317851fc7e7fa3c" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a2c141ff1d9c76317d67513bc814cb34", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 59623543, "upload_time": "2022-01-11T23:20:48", "upload_time_iso_8601": "2022-01-11T23:20:48.831461Z", "url": "https://files.pythonhosted.org/packages/1a/78/b0778de525a449b9084d6ad1662e8eaf64b8b96e4d7cc2c945f98d0f3c56/ray-1.10.0rc0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8124c44bfaef1f698a9558f14ddfaad1", "sha256": "c5e1fadcf29c68edd82013f0e8af79bc5edc61a7594fc1cbff84a1cc255d89a6" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8124c44bfaef1f698a9558f14ddfaad1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22925593, "upload_time": "2022-01-11T23:20:55", "upload_time_iso_8601": "2022-01-11T23:20:55.126368Z", "url": "https://files.pythonhosted.org/packages/87/ac/0a872f8ae41d9671e7f21f9d1011bb318c52b2f1405964db0bf39e017624/ray-1.10.0rc0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f19e15bb5e093f288818fd5c77bf68d", "sha256": "3e968d30a36bce52e8b66bc323745fb678318f71c8eea970c95ef7612c3a80de" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "8f19e15bb5e093f288818fd5c77bf68d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 60804388, "upload_time": "2022-01-11T23:21:05", "upload_time_iso_8601": "2022-01-11T23:21:05.640081Z", "url": "https://files.pythonhosted.org/packages/48/66/2ddb4179cd45fa211d0dde28245364a45b28a72105dbdf36a93f77df972d/ray-1.10.0rc0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fff35d552af7fca2417536f46e0dd578", "sha256": "887c2c345963809350ff32e267c7454809bc808e9d3444cd0c16c8e5e5ce60de" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "fff35d552af7fca2417536f46e0dd578", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 27855573, "upload_time": "2022-01-11T23:21:11", "upload_time_iso_8601": "2022-01-11T23:21:11.738628Z", "url": "https://files.pythonhosted.org/packages/9e/13/0215770a2cfa945cec193748770dcd7fb3a983b7fa292cb252ebbf0bca4a/ray-1.10.0rc0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4602b6ac79ea01ad4a8e8973e972b2e8", "sha256": "e326ea9f5b8286c9795c0d85463be5914940e7ef0714ff0c3e299c84a3a67c1e" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4602b6ac79ea01ad4a8e8973e972b2e8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 59359681, "upload_time": "2022-01-11T23:21:19", "upload_time_iso_8601": "2022-01-11T23:21:19.231026Z", "url": "https://files.pythonhosted.org/packages/28/93/9315e84159b76025620411902db7081ab351fed88d9dc74b21a2dab362d9/ray-1.10.0rc0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df5eb2074c3fd110385becfb7cccbfad", "sha256": "ddf51785148b36e902898306e25940a4c85d28042e15de77ae10bff0a1af7d24" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "df5eb2074c3fd110385becfb7cccbfad", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 22821489, "upload_time": "2022-01-11T23:21:24", "upload_time_iso_8601": "2022-01-11T23:21:24.423431Z", "url": "https://files.pythonhosted.org/packages/cb/c7/98c4a7088d53503ab62c88ddaebb1f99558a94f779649615cac3b20f0beb/ray-1.10.0rc0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8ede703ed7715d6f9878a76ea9ebcf8", "sha256": "b88fbf44914a81f1715af6446486e735e6b25a3a4a3c940563d4ab243b8d32a6" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "b8ede703ed7715d6f9878a76ea9ebcf8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 60806637, "upload_time": "2022-01-11T23:21:32", "upload_time_iso_8601": "2022-01-11T23:21:32.045451Z", "url": "https://files.pythonhosted.org/packages/17/3e/18faa70d7bbbbdac6385fc819a1779a94745fa6fa1c09369d001ee9bd32f/ray-1.10.0rc0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df109a7a77967f0f3e79f55aa455b265", "sha256": "4683c0fada5ae32763ea07fd8238863bd3de630d18337f1a515eb316249e52ad" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "df109a7a77967f0f3e79f55aa455b265", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 27856973, "upload_time": "2022-01-11T23:21:37", "upload_time_iso_8601": "2022-01-11T23:21:37.813297Z", "url": "https://files.pythonhosted.org/packages/f7/e7/ce7f37de54788c760ed8de413b51ac43e91c3aa79da101c965af3fbaf881/ray-1.10.0rc0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a6066ddac65c011efaf563fcda00958", "sha256": "d4cc0356d2c1b966cad5d2e9eded5ef10b8655c15d21f667cb0562d681e5d764" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7a6066ddac65c011efaf563fcda00958", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 59331351, "upload_time": "2022-01-11T23:21:44", "upload_time_iso_8601": "2022-01-11T23:21:44.924910Z", "url": "https://files.pythonhosted.org/packages/2d/bb/2bcfe0ff67636bde1c5734cd3e7a2bcff3c1662749020d2e9a0768090f89/ray-1.10.0rc0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "842685b426fada4aa56897b8f897bc47", "sha256": "11daab94b02b082d7f14875f682c061a1431515ff2d3f8ed219677502617dbcc" }, "downloads": -1, "filename": "ray-1.10.0rc0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "842685b426fada4aa56897b8f897bc47", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 22821617, "upload_time": "2022-01-11T23:21:50", "upload_time_iso_8601": "2022-01-11T23:21:50.240896Z", "url": "https://files.pythonhosted.org/packages/d7/54/6fb5bbcf2c21749516e74dbdc3e269b651d322142203e3b3bbae1213b3ef/ray-1.10.0rc0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "df8f4e78b3bc181a3bc20a4cef236528", "sha256": "944b5845b80565fb85fbe554a09be4d5c9781a695c469bafe6f039b8489031bd" }, "downloads": -1, "filename": "ray-1.11.0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "df8f4e78b3bc181a3bc20a4cef236528", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55147061, "upload_time": "2022-03-09T01:43:54", "upload_time_iso_8601": "2022-03-09T01:43:54.363760Z", "url": "https://files.pythonhosted.org/packages/a5/5e/090c0e70ec094ba2060a20939df5c12fec3ede1e782e5da0eee641be4d17/ray-1.11.0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e43b49f2e80680cae9733469dc81edf2", "sha256": "63206bfa7c00eacd140e61e3e369e3db8174aef29fea07fe92a888549d75a081" }, "downloads": -1, "filename": "ray-1.11.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e43b49f2e80680cae9733469dc81edf2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 52689857, "upload_time": "2022-03-09T01:44:10", "upload_time_iso_8601": "2022-03-09T01:44:10.901490Z", "url": "https://files.pythonhosted.org/packages/14/89/cabd541d323665b9b7ffb8ef35a493bf7eee69d3d3bbe01bf008344982b7/ray-1.11.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "083800eb863f4a58aed7753b70bc44da", "sha256": "bd127b40f3c6c0d9aa5e4423f440ba4bbbbe1405c73fc6b0f52b8e0a3f132182" }, "downloads": -1, "filename": "ray-1.11.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "083800eb863f4a58aed7753b70bc44da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19531769, "upload_time": "2022-03-09T01:44:20", "upload_time_iso_8601": "2022-03-09T01:44:20.171235Z", "url": "https://files.pythonhosted.org/packages/89/55/b750b45bc7f41a399d55a9a85aba47f872c51acabd7647890289a6019b1c/ray-1.11.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3294e00fdc6c2d8f7d38c6937eac65c", "sha256": "827ed4b27e54625ab009cbf5f7d34e02825e31808048da0ab60865629f2103b5" }, "downloads": -1, "filename": "ray-1.11.0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "e3294e00fdc6c2d8f7d38c6937eac65c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55153879, "upload_time": "2022-03-09T01:44:38", "upload_time_iso_8601": "2022-03-09T01:44:38.394061Z", "url": "https://files.pythonhosted.org/packages/cc/50/f0960ca520a4bef91ebf34e7bdf91ce25307c1bc222bc24ab388b088ec61/ray-1.11.0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "711fc4e343415cd8e0fa07b23181b0ad", "sha256": "c3bddc9a1e2cfc7289dbfeedd8ab4a36277a8ec07906b27dd4bc56bd0f2e4bb4" }, "downloads": -1, "filename": "ray-1.11.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "711fc4e343415cd8e0fa07b23181b0ad", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 52689237, "upload_time": "2022-03-09T01:44:54", "upload_time_iso_8601": "2022-03-09T01:44:54.420023Z", "url": "https://files.pythonhosted.org/packages/c6/8d/a8cdd9b8c5c0f4aa78012c1c6a3afa13529b64dce068555dcafc9e630a7b/ray-1.11.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2480295addafd485424d1b8d726d57b7", "sha256": "c1245bff4280c0b950a6fb993d1ab1da2dae7663a52009a4e4c9e8bd4cb2060a" }, "downloads": -1, "filename": "ray-1.11.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2480295addafd485424d1b8d726d57b7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19531885, "upload_time": "2022-03-09T01:45:03", "upload_time_iso_8601": "2022-03-09T01:45:03.576846Z", "url": "https://files.pythonhosted.org/packages/2b/3c/76aafde2e888302c7a0011109cfc81a1980a2329d37050fb6767432431dd/ray-1.11.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9721d3355e5ede02af8161bfd10b713", "sha256": "f2bcc2aebac230f7343698c06b7ccc02f15c6ae5f2b47cb06d6c9f1ed5efe6b7" }, "downloads": -1, "filename": "ray-1.11.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "c9721d3355e5ede02af8161bfd10b713", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 54983852, "upload_time": "2022-03-09T01:45:20", "upload_time_iso_8601": "2022-03-09T01:45:20.762758Z", "url": "https://files.pythonhosted.org/packages/fb/94/e10ab5172d3176ce3e54b840306306dda93319b85a95c3e3935601904d9d/ray-1.11.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49a732a54c654b61c765d5f299adbe18", "sha256": "2b538e70a6e7f5f7d6b5af21daed114acd26d348e3df053105cd664abfdab614" }, "downloads": -1, "filename": "ray-1.11.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "49a732a54c654b61c765d5f299adbe18", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 24477573, "upload_time": "2022-03-09T01:45:30", "upload_time_iso_8601": "2022-03-09T01:45:30.661172Z", "url": "https://files.pythonhosted.org/packages/4c/5a/0167d4b9695213521d2cead305a45debe160b89a709132d26c8fd9cc729d/ray-1.11.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4f1271c76c8974c3f5e728b33561483", "sha256": "ccf0e111d3e08928d5217fcd37ef149b97fe05935cbe8ceee224219730e088b6" }, "downloads": -1, "filename": "ray-1.11.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c4f1271c76c8974c3f5e728b33561483", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52421563, "upload_time": "2022-03-09T01:45:47", "upload_time_iso_8601": "2022-03-09T01:45:47.373690Z", "url": "https://files.pythonhosted.org/packages/40/12/9ce98a12b34a3cee71fd989f34925a71e5417aa7833a94e54d5e1318eca7/ray-1.11.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6d6b2b6f3596a6144e333bfa7ee5c51", "sha256": "81241b495d807e4fa59d5f963d934ddb88bf552b25537fd230dd0a7cd67c2f86" }, "downloads": -1, "filename": "ray-1.11.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "f6d6b2b6f3596a6144e333bfa7ee5c51", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19424139, "upload_time": "2022-03-09T01:45:56", "upload_time_iso_8601": "2022-03-09T01:45:56.659547Z", "url": "https://files.pythonhosted.org/packages/89/47/4138ae7aaa7f6bbe7ecd07a6b6b65f1cc58a3aca7c8fc8fa069f7a9c77e0/ray-1.11.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0bab0fd3b8fbe8f4822224b53a526af8", "sha256": "d586fa699fbe7c26c4a2e4cc44d6e035b8061891245256a25f0d93e9a57aec09" }, "downloads": -1, "filename": "ray-1.11.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "0bab0fd3b8fbe8f4822224b53a526af8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 54985958, "upload_time": "2022-03-09T01:46:13", "upload_time_iso_8601": "2022-03-09T01:46:13.124833Z", "url": "https://files.pythonhosted.org/packages/30/25/883ce7ee957cff521fca63a3e36b598e8a2e626b59c64f5fc037d84dac28/ray-1.11.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d59d68e73a0eb6e54e5be0c80a2f71e0", "sha256": "67b655029dff5b42b1b4a757b7d58de34537aa5852f3fccec8e70df1c63f3e30" }, "downloads": -1, "filename": "ray-1.11.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "d59d68e73a0eb6e54e5be0c80a2f71e0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 24479922, "upload_time": "2022-03-09T01:46:23", "upload_time_iso_8601": "2022-03-09T01:46:23.002135Z", "url": "https://files.pythonhosted.org/packages/50/10/c843acbae8ad702ac9384f1fe5314032d797f04abc0b3da036788c07ceb3/ray-1.11.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9cf72b3db038bceaf37ec0c4710df265", "sha256": "aaaf8f40718264b01466ad99fa52892a32447122b2438f1e16afdf661829ffae" }, "downloads": -1, "filename": "ray-1.11.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "9cf72b3db038bceaf37ec0c4710df265", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52397425, "upload_time": "2022-03-09T01:46:39", "upload_time_iso_8601": "2022-03-09T01:46:39.434627Z", "url": "https://files.pythonhosted.org/packages/4b/f7/f20c35d0318d96ce56b7ad53d6b5cf376aebbd74d13752ab9e0eb0f656e0/ray-1.11.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a44fa0cf2302012be35dd0be3a59bbcf", "sha256": "534b18b39b8b1b44d48ca377b2819857bda89c8d2031eed0b280a7b493462a0c" }, "downloads": -1, "filename": "ray-1.11.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "a44fa0cf2302012be35dd0be3a59bbcf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19424924, "upload_time": "2022-03-09T01:46:48", "upload_time_iso_8601": "2022-03-09T01:46:48.979336Z", "url": "https://files.pythonhosted.org/packages/72/67/a9ae8cb11cd1e77d829df6a23969da45b9f7399cd60f0c4cda28a4c20a78/ray-1.11.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.11.0rc0": [ { "comment_text": "", "digests": { "md5": "84fc860a98014c13572620c78dd64a38", "sha256": "6a4b65b57361b9d8e75ef8e15cf84941f197bf359a657d79b9b2f7b659f44e61" }, "downloads": -1, "filename": "ray-1.11.0rc0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "84fc860a98014c13572620c78dd64a38", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 52698210, "upload_time": "2022-02-15T19:46:21", "upload_time_iso_8601": "2022-02-15T19:46:21.115338Z", "url": "https://files.pythonhosted.org/packages/65/32/3ed699d2b44666a123f8c063812f7769194006792609be81240f6b382a1c/ray-1.11.0rc0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe8cd527c1d6d1d928c2c192034cac61", "sha256": "b6a88173c2aaeb1c021d39ad40db7319a7d82f09ab0467bee298108e5fff4b69" }, "downloads": -1, "filename": "ray-1.11.0rc0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fe8cd527c1d6d1d928c2c192034cac61", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19540527, "upload_time": "2022-02-15T19:46:36", "upload_time_iso_8601": "2022-02-15T19:46:36.101201Z", "url": "https://files.pythonhosted.org/packages/f1/93/1bd60fd65e1b86636d9834f278430d018700b39f79af1f3218ebb02f1c99/ray-1.11.0rc0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c09fc8dd25af2939e153ff0220df219a", "sha256": "1fc88dfdb7fbd74624ce7ea82d249af39ba68fb67897aa7a197393e723f6e894" }, "downloads": -1, "filename": "ray-1.11.0rc0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c09fc8dd25af2939e153ff0220df219a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 52697619, "upload_time": "2022-02-15T19:47:09", "upload_time_iso_8601": "2022-02-15T19:47:09.501728Z", "url": "https://files.pythonhosted.org/packages/c1/f9/642d53b750c81d043c324efb2de1f47e000951100fbec787995eb75d657e/ray-1.11.0rc0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b4ba338805e43c969b7118050b4ec55", "sha256": "7d85062deccbf42341af37688b32752288b3c0b848489b1ce405d0aabe8da84d" }, "downloads": -1, "filename": "ray-1.11.0rc0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0b4ba338805e43c969b7118050b4ec55", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19540432, "upload_time": "2022-02-15T19:47:23", "upload_time_iso_8601": "2022-02-15T19:47:23.474110Z", "url": "https://files.pythonhosted.org/packages/b5/1e/14c8eece5ad278a44196d4ebe1c1b571e29195935b782f0171c9c35e6d75/ray-1.11.0rc0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c52367d3471d73fdd930c0470e9541a", "sha256": "9a79e97811161cfe7e1b27360fcdf9f139f5bc5d41e14c17a6b523bd78ddb5a5" }, "downloads": -1, "filename": "ray-1.11.0rc0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8c52367d3471d73fdd930c0470e9541a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52429885, "upload_time": "2022-02-15T19:47:56", "upload_time_iso_8601": "2022-02-15T19:47:56.573014Z", "url": "https://files.pythonhosted.org/packages/03/85/009d950567ec4b4e7a1617bdf4be1b946fa2ffa6707113eb0962aa8bcb48/ray-1.11.0rc0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d3e2eeb0aea09e83d92d5516c028b3d", "sha256": "c3df54a3a781a3c42d0a47725437472f10d85a9dcc547e0f29d810f92bfdb8c5" }, "downloads": -1, "filename": "ray-1.11.0rc0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "1d3e2eeb0aea09e83d92d5516c028b3d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19432551, "upload_time": "2022-02-15T19:48:11", "upload_time_iso_8601": "2022-02-15T19:48:11.234743Z", "url": "https://files.pythonhosted.org/packages/80/6c/1f76b394a3dfb6654d20a8b49527ef3d9b478617deb567c0faa989da63e4/ray-1.11.0rc0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a00470fd2a8496e02549b888469c5f1e", "sha256": "1914a62a54d34585bc883684291a23fdd3f11fb01f94744f8e19fefe410d10b5" }, "downloads": -1, "filename": "ray-1.11.0rc0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a00470fd2a8496e02549b888469c5f1e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52405500, "upload_time": "2022-02-15T19:48:43", "upload_time_iso_8601": "2022-02-15T19:48:43.820354Z", "url": "https://files.pythonhosted.org/packages/e5/a3/e967e2d2a9091c19e695b50478c4616bcccd2f48a4220a1a9d2c7afaccd8/ray-1.11.0rc0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a49a8f521546a661b90f11e9949d6ca0", "sha256": "b3a6d3766c4b42af053805de3a20286d0adb57180ec191a318102f89eca0fd36" }, "downloads": -1, "filename": "ray-1.11.0rc0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "a49a8f521546a661b90f11e9949d6ca0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19433528, "upload_time": "2022-02-15T19:48:59", "upload_time_iso_8601": "2022-02-15T19:48:59.373816Z", "url": "https://files.pythonhosted.org/packages/35/e0/1f1cff10531daec47098a3889dfa992582582f7b1d26b2d9d854dcbb61e2/ray-1.11.0rc0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.11.0rc1": [ { "comment_text": "", "digests": { "md5": "1479c01c8a99fdb8d11e7a61564092fe", "sha256": "0def8c9616297ca5ae3a1946978edee76bad8496913176ff8ab3694284d95019" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "1479c01c8a99fdb8d11e7a61564092fe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55168329, "upload_time": "2022-03-01T22:07:16", "upload_time_iso_8601": "2022-03-01T22:07:16.330987Z", "url": "https://files.pythonhosted.org/packages/2f/24/0aa4fde238af2a016e4f73058642483824ab06a0ca6168e9de23ff6ebecb/ray-1.11.0rc1-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a14614a46e0cc07c8a54eecd9317ebca", "sha256": "7ca5acac542b0faaf2b273d6663a95b593ee3fab30ad628ad86e1fe38174555f" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a14614a46e0cc07c8a54eecd9317ebca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 52697787, "upload_time": "2022-03-01T22:07:34", "upload_time_iso_8601": "2022-03-01T22:07:34.317558Z", "url": "https://files.pythonhosted.org/packages/1a/36/8df4ece05437c257f4aad5d672437bbf54e116e9bc31bf338053dc07eeaf/ray-1.11.0rc1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cff29c791741d73a5813cd64d4f5f526", "sha256": "9b7ac4a1199c9bc7315dd15b2d8bc7d50ff76d2bfee926840ab68ed162ac803a" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "cff29c791741d73a5813cd64d4f5f526", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19541084, "upload_time": "2022-03-01T22:07:45", "upload_time_iso_8601": "2022-03-01T22:07:45.460158Z", "url": "https://files.pythonhosted.org/packages/d0/e1/25de0ceb7ba5bb31380e35bcd64a4de4570b688053927c1a38fe7bdc5438/ray-1.11.0rc1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74f46378a2d78ea103dfe4da42e72bcb", "sha256": "e84de1825188bfa37fd727eb0ee053fae7b928eb2ec3d39e78dcdca48d3f7480" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "74f46378a2d78ea103dfe4da42e72bcb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55168670, "upload_time": "2022-03-01T22:08:06", "upload_time_iso_8601": "2022-03-01T22:08:06.414090Z", "url": "https://files.pythonhosted.org/packages/95/f6/ebb199901a4f356e82e63bac735f75836ce63890245228b2ed25cca25fd4/ray-1.11.0rc1-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9b53c6cf4a38227554e2040800a906b", "sha256": "81ef2f75a67a264e0049620095220ae125b90382cede50f284cd0a7b66a6a605" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b9b53c6cf4a38227554e2040800a906b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 52697097, "upload_time": "2022-03-01T22:08:27", "upload_time_iso_8601": "2022-03-01T22:08:27.418186Z", "url": "https://files.pythonhosted.org/packages/74/51/e9ac543feac0d520f9add110e88be7163a045873aeba17a6031eac8dfaf2/ray-1.11.0rc1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "764f3ca0b5266ba34072e8dab321f316", "sha256": "5634135716f5b85aa5baca2f614ba6c40e799453a5901d0f035e60e0855bac5e" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "764f3ca0b5266ba34072e8dab321f316", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19540868, "upload_time": "2022-03-01T22:08:38", "upload_time_iso_8601": "2022-03-01T22:08:38.228534Z", "url": "https://files.pythonhosted.org/packages/0b/77/63e4bfc13d8eaacf427ee28845e42f6a4b46a8a713d239bace0063a2d823/ray-1.11.0rc1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "026b0775cbcaf43191b996dcdbecc00e", "sha256": "1df2f86f550811fb5df3419c9e54cd05ee7307d647af892283758924d7720f5e" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "026b0775cbcaf43191b996dcdbecc00e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 54998569, "upload_time": "2022-03-01T22:08:58", "upload_time_iso_8601": "2022-03-01T22:08:58.781096Z", "url": "https://files.pythonhosted.org/packages/f6/b3/988f68690bd83676ac8438024f98577aee5d00df492f467e33b77e2cd882/ray-1.11.0rc1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59b711b9ba2ca821448504d9778b5e65", "sha256": "80f246d1e027b934ca66d1868ce9427e66d3f8e63de7d6e08016afc9dce640da" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "59b711b9ba2ca821448504d9778b5e65", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52429469, "upload_time": "2022-03-01T22:09:18", "upload_time_iso_8601": "2022-03-01T22:09:18.473963Z", "url": "https://files.pythonhosted.org/packages/42/fe/72e79f4aad516289268bde90d56090bb7d5911a919f264cf821b481986dc/ray-1.11.0rc1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7053583786ab2aac334ba4aaae72379d", "sha256": "fa132977a0f4d6602b67c80e3f170794fd0d2b06ca0faf088d690b67fe8a9c78" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7053583786ab2aac334ba4aaae72379d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19432990, "upload_time": "2022-03-01T22:09:29", "upload_time_iso_8601": "2022-03-01T22:09:29.531331Z", "url": "https://files.pythonhosted.org/packages/79/43/f4afc782562afb25fe227f43dff4d0d3209b98735702997dc1c90e96060a/ray-1.11.0rc1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bd599ba49fe5356b38df8aa277c403f", "sha256": "2d0c59a4cd2609c37d5cd91a180f5ef55a08810e7f053d3572b2f486ce1e57ec" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "8bd599ba49fe5356b38df8aa277c403f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 55000678, "upload_time": "2022-03-01T22:09:54", "upload_time_iso_8601": "2022-03-01T22:09:54.863435Z", "url": "https://files.pythonhosted.org/packages/a2/db/d494e46d08a0931fb3d8982345529319b8de03f788a9e82fd73c334ec0a8/ray-1.11.0rc1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ef6ee9fddc2988da1a69ac3664b56b8", "sha256": "403e04df98bd9fea452a1c1e3f11be72e90fbb466fc50d36d6c55a0c686fd9fb" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7ef6ee9fddc2988da1a69ac3664b56b8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52405311, "upload_time": "2022-03-01T22:10:14", "upload_time_iso_8601": "2022-03-01T22:10:14.246801Z", "url": "https://files.pythonhosted.org/packages/ab/33/bc4f68e741d71e9edcd22cfec0a2414ab575041c332955111fc202f193cc/ray-1.11.0rc1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e66304e29c7d629c776e1d48ae38c75", "sha256": "726008925ed316374ddb4cc210dee6874845a4a0ba8fb35120fba49fb8062bfb" }, "downloads": -1, "filename": "ray-1.11.0rc1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "4e66304e29c7d629c776e1d48ae38c75", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19434009, "upload_time": "2022-03-01T22:10:25", "upload_time_iso_8601": "2022-03-01T22:10:25.500183Z", "url": "https://files.pythonhosted.org/packages/9c/77/786d165be0bb01a75c3ef302ae91a7a8cfe7f28be717e137889be385377d/ray-1.11.0rc1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.11.1": [ { "comment_text": "", "digests": { "md5": "b0bb645708069fe52cedad7e04f680de", "sha256": "b18383ffd5f6640af8998700bb70ef55ba0ff34742b47b6d06d9ab36be19ada6" }, "downloads": -1, "filename": "ray-1.11.1-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "b0bb645708069fe52cedad7e04f680de", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55153631, "upload_time": "2022-04-29T21:08:42", "upload_time_iso_8601": "2022-04-29T21:08:42.308317Z", "url": "https://files.pythonhosted.org/packages/9d/1a/f54c94a466a4d734f9e15c7ee1b5b31c86ef5eaf017ccccac0d17e4cb5e7/ray-1.11.1-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a4fe1f22d70ab0946730c478c6c3706", "sha256": "6457d729df12579634bdf06b8356e019bd44fc6533eacebfaa2ea81a6af2d012" }, "downloads": -1, "filename": "ray-1.11.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5a4fe1f22d70ab0946730c478c6c3706", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 52688937, "upload_time": "2022-04-29T21:09:24", "upload_time_iso_8601": "2022-04-29T21:09:24.504678Z", "url": "https://files.pythonhosted.org/packages/9c/d3/fe24217c0ccb745fd03715e6a64445923327ea60515cc0130f81c8bd9982/ray-1.11.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2bebcad0481c429acf4de6d9426dd1a1", "sha256": "b29442c366aa55ea8973a1d259ed2a4df699036457694ba283bf58dcbc847de6" }, "downloads": -1, "filename": "ray-1.11.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "2bebcad0481c429acf4de6d9426dd1a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19532126, "upload_time": "2022-04-29T21:09:46", "upload_time_iso_8601": "2022-04-29T21:09:46.690490Z", "url": "https://files.pythonhosted.org/packages/39/1f/7f1591fcf12edee85cbcb089a5535feea42d86fb2c57d7648c16cc4586c4/ray-1.11.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02ced7146538a8df54e78cefb91affb1", "sha256": "18defa69be5c5f5411928271d67088dfac2eb5a3ef03df1aca2152368b96830c" }, "downloads": -1, "filename": "ray-1.11.1-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "02ced7146538a8df54e78cefb91affb1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55153947, "upload_time": "2022-04-29T21:10:32", "upload_time_iso_8601": "2022-04-29T21:10:32.100263Z", "url": "https://files.pythonhosted.org/packages/db/ad/5ddf6a7188014c0e9f4108013e90f70ce0b2ff51299371d42da3bc46e37f/ray-1.11.1-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e7993b8fe823feff6e87a2f65e82018", "sha256": "47da2bde731aa81ecaca47f4e98054db7916e379db2b82aecd49af2bb42d7e71" }, "downloads": -1, "filename": "ray-1.11.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0e7993b8fe823feff6e87a2f65e82018", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 52688381, "upload_time": "2022-04-29T21:11:15", "upload_time_iso_8601": "2022-04-29T21:11:15.110821Z", "url": "https://files.pythonhosted.org/packages/26/0c/0804ae7c10a50c39ee9817896f6ecf3d9fd967ef31cefec36535521f7cc5/ray-1.11.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff981164e96168a10f25c97412827e24", "sha256": "014d412c19bae06af2398fe712a4726795f0bd3b2fe9d3dc8050eaf8ec50d377" }, "downloads": -1, "filename": "ray-1.11.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ff981164e96168a10f25c97412827e24", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19532090, "upload_time": "2022-04-29T21:11:36", "upload_time_iso_8601": "2022-04-29T21:11:36.429928Z", "url": "https://files.pythonhosted.org/packages/f7/d4/e5cc989bee54ca9ae4ac1d68db3d5db28a7fe0304126b448e5f6858b77e4/ray-1.11.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "632772942666de4a63b7ad7a785c8492", "sha256": "74946cae4f2087df4b63648846998c001bf52cf81309278b4d269f55eb24453e" }, "downloads": -1, "filename": "ray-1.11.1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "632772942666de4a63b7ad7a785c8492", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 54983924, "upload_time": "2022-04-29T21:12:17", "upload_time_iso_8601": "2022-04-29T21:12:17.852890Z", "url": "https://files.pythonhosted.org/packages/5e/48/1c0604da2a55a888ba2e1fe61cc3a64d4a98606a97b35bf9f5b5b5ec4eaf/ray-1.11.1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51eb7a4337f46855b71af7812d178492", "sha256": "4ee14013b7afbfaac27783de232c42f77a5192e579ad55321be934da6f4fdf73" }, "downloads": -1, "filename": "ray-1.11.1-cp38-cp38-macosx_12_0_arm64.whl", "has_sig": false, "md5_digest": "51eb7a4337f46855b71af7812d178492", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 24577959, "upload_time": "2022-04-29T21:12:38", "upload_time_iso_8601": "2022-04-29T21:12:38.797301Z", "url": "https://files.pythonhosted.org/packages/5d/cb/1fa4123e4f80a544be9c87f521f8b4514806706f5e98507a1588003ee0c0/ray-1.11.1-cp38-cp38-macosx_12_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a081708693e5374e8e5f0fba9569e948", "sha256": "74a3d2691d4dbeaee1795cf8fb43d69219bdddc88d107885dd5c7010866fa5fc" }, "downloads": -1, "filename": "ray-1.11.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a081708693e5374e8e5f0fba9569e948", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52420728, "upload_time": "2022-04-29T21:13:20", "upload_time_iso_8601": "2022-04-29T21:13:20.654741Z", "url": "https://files.pythonhosted.org/packages/4f/5f/c6691e8bf9c539f3be47d2a4f8d6d57c67c06e15cfae735deeffee8c2d50/ray-1.11.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "094f4566fd4dbc7c8fa5f4755f6edb16", "sha256": "79b03d9bb7d0dce6df0c1fbc0ce7e7a345a6d18e7c91eb8490cd5b19fed72877" }, "downloads": -1, "filename": "ray-1.11.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "094f4566fd4dbc7c8fa5f4755f6edb16", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19424367, "upload_time": "2022-04-29T21:13:37", "upload_time_iso_8601": "2022-04-29T21:13:37.505299Z", "url": "https://files.pythonhosted.org/packages/a8/6e/274ca57e5d9a63f70be45b1a6b393ec0bdbf900d272ab23510df5d8b9a35/ray-1.11.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42a1b47d130c4b6399be6ab3d9ee0c0f", "sha256": "4e82d9033421075df58fb35455fef12e47957414cc2d914e92a6ccb16092f17c" }, "downloads": -1, "filename": "ray-1.11.1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "42a1b47d130c4b6399be6ab3d9ee0c0f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 54986001, "upload_time": "2022-04-29T21:14:18", "upload_time_iso_8601": "2022-04-29T21:14:18.861955Z", "url": "https://files.pythonhosted.org/packages/16/0d/f4649d56bfed5ac6c9b5e7e5a9e2efcd32bc248642f7e91c0e723f7e4e8c/ray-1.11.1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0a8be0d5c73136d415a21d4b0479db0", "sha256": "41f1335a844b2c65b99fbe7d29199d958bb45797b090a81971d34f6e94a3baf8" }, "downloads": -1, "filename": "ray-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", "has_sig": false, "md5_digest": "f0a8be0d5c73136d415a21d4b0479db0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 24578952, "upload_time": "2022-04-29T21:14:39", "upload_time_iso_8601": "2022-04-29T21:14:39.986409Z", "url": "https://files.pythonhosted.org/packages/a6/a6/84548125bbd12e2c1a0de81c7a164d3d14acf43d58c458f13244035127c3/ray-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ef15d2b9c7808225aaf728f98189ee0", "sha256": "cc6c1508be9912dbee9fc8a049d66d22991c27f08fa1684332bb2bf676a8beaf" }, "downloads": -1, "filename": "ray-1.11.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5ef15d2b9c7808225aaf728f98189ee0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52396547, "upload_time": "2022-04-29T21:15:19", "upload_time_iso_8601": "2022-04-29T21:15:19.926347Z", "url": "https://files.pythonhosted.org/packages/4d/22/f15d630f04114d57b0a6f876bc5c1f2e4f0710e4af4ab522f8afb3bfd024/ray-1.11.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "675d2b4c6c531212e04c124f0c91b133", "sha256": "da2c79543a0f690b5bebd8debaa099c57afc47f3fe3dc937293ad0946b509d10" }, "downloads": -1, "filename": "ray-1.11.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "675d2b4c6c531212e04c124f0c91b133", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19425201, "upload_time": "2022-04-29T21:15:36", "upload_time_iso_8601": "2022-04-29T21:15:36.962083Z", "url": "https://files.pythonhosted.org/packages/48/9f/0d4ff44316bf4f7965335388b6551981ef4316e26db7d8f33f575cf6de2b/ray-1.11.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "708a66ddc5bdb9b5f6ea0fe224b30f4d", "sha256": "6e45f89cb8cc6a63419880eeef2327c8482f3ebe4449f83560c079b78cdeba88" }, "downloads": -1, "filename": "ray-1.12.0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "708a66ddc5bdb9b5f6ea0fe224b30f4d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55966042, "upload_time": "2022-04-14T17:04:21", "upload_time_iso_8601": "2022-04-14T17:04:21.432111Z", "url": "https://files.pythonhosted.org/packages/d3/7c/d4d3f14a0bddeb0afd5e053b76cac2b0e03c64f68145aff755a03140b8ec/ray-1.12.0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0bc0ed19f83d3979323c7f8fa34c680", "sha256": "c2854637cd676fafce9dc9c763b5ace8c7a433a7a37992b94b4444237501ddde" }, "downloads": -1, "filename": "ray-1.12.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c0bc0ed19f83d3979323c7f8fa34c680", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53196094, "upload_time": "2022-04-14T17:04:50", "upload_time_iso_8601": "2022-04-14T17:04:50.842806Z", "url": "https://files.pythonhosted.org/packages/ca/b2/36c8147eb700cbc60aafdc030016f3ab2db2c7ab0ddb4419600a0d5f916e/ray-1.12.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf89dbd2a7bcd7bd912a8e4a5e0299ee", "sha256": "30368c68957f171e19844b279541f60cb2423d105665c2ac59f05294d522b84d" }, "downloads": -1, "filename": "ray-1.12.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "cf89dbd2a7bcd7bd912a8e4a5e0299ee", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19985338, "upload_time": "2022-04-14T17:05:01", "upload_time_iso_8601": "2022-04-14T17:05:01.834304Z", "url": "https://files.pythonhosted.org/packages/73/a7/54b4de5fb26734d9b3980fb85a2aa36f6d7ac389d6ed653326240b1e3260/ray-1.12.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82f32c2694ebfb3d83891793f4ac01d2", "sha256": "f8b68b41c92411c874f365314747dd19366576ee06373eb202adb02352ede73f" }, "downloads": -1, "filename": "ray-1.12.0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "82f32c2694ebfb3d83891793f4ac01d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55965048, "upload_time": "2022-04-14T17:05:29", "upload_time_iso_8601": "2022-04-14T17:05:29.860728Z", "url": "https://files.pythonhosted.org/packages/f4/07/a0892bc2dc5904e21b6a2ed22cdf28596ffe8c13eb666036bcf2f130eba2/ray-1.12.0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e52ed4c657dcfe94fa092de50c39da3a", "sha256": "eeb036610f41321fbf3800b33350d88c90f1244502049b353d48d4695b329586" }, "downloads": -1, "filename": "ray-1.12.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e52ed4c657dcfe94fa092de50c39da3a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53193584, "upload_time": "2022-04-14T17:05:55", "upload_time_iso_8601": "2022-04-14T17:05:55.403491Z", "url": "https://files.pythonhosted.org/packages/e2/89/88297a270e31d4a5dce0bc301442e5204bb9adc867212c3ca6dda1db9fb5/ray-1.12.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7bc763c3704d9d618f12999f409d5f1", "sha256": "8078b8c983f3575da846fac8da22b3f965eab2fb8e429cb817f91d539555d224" }, "downloads": -1, "filename": "ray-1.12.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b7bc763c3704d9d618f12999f409d5f1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19987096, "upload_time": "2022-04-14T17:06:07", "upload_time_iso_8601": "2022-04-14T17:06:07.205436Z", "url": "https://files.pythonhosted.org/packages/9d/ca/9dc428b2d5041f0ace5834c042ee295eec61b60217e2dca93948759d2448/ray-1.12.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab0d020ae6df43b2db1483f89c648398", "sha256": "d373b5a472077fc3a3e7a1fc142b2e5c6e473ec9de3b97b8b0e7e4728793fefc" }, "downloads": -1, "filename": "ray-1.12.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "ab0d020ae6df43b2db1483f89c648398", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 55793550, "upload_time": "2022-04-14T17:06:33", "upload_time_iso_8601": "2022-04-14T17:06:33.707212Z", "url": "https://files.pythonhosted.org/packages/e2/55/444a31477eb50c21e7a527cedc18c5534db050d2361990689943bd802267/ray-1.12.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f38bed99194b15d2f6b487278ea51064", "sha256": "cd4633ae0994c5407d9ee20f125585af4ee9b945733286096e0330c083d7c866" }, "downloads": -1, "filename": "ray-1.12.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "f38bed99194b15d2f6b487278ea51064", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 25060575, "upload_time": "2022-04-14T17:06:47", "upload_time_iso_8601": "2022-04-14T17:06:47.656683Z", "url": "https://files.pythonhosted.org/packages/54/c5/5e5bded2fa36eea61451a8eede0eadea07dcc30727cc254d9631e51cdd82/ray-1.12.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73d178effbffcd179fbeabf6ce790947", "sha256": "59f9bcdee032ee350e7391f3fabf2c6ec2690bfed4f1884db1b40429acc660c7" }, "downloads": -1, "filename": "ray-1.12.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "73d178effbffcd179fbeabf6ce790947", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52927990, "upload_time": "2022-04-14T17:07:13", "upload_time_iso_8601": "2022-04-14T17:07:13.337299Z", "url": "https://files.pythonhosted.org/packages/45/97/836f7a9b8bb9159993952e01e7355302e3e4f434de33e9c8a6d637ea9938/ray-1.12.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e3701b6a7b88863c2fc9e83bc226bbf", "sha256": "31c2086ba1f4622aaf76c1039f3c5c25f3a35556decbfb9dba5a8382e704c800" }, "downloads": -1, "filename": "ray-1.12.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3e3701b6a7b88863c2fc9e83bc226bbf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19881749, "upload_time": "2022-04-14T17:07:25", "upload_time_iso_8601": "2022-04-14T17:07:25.336147Z", "url": "https://files.pythonhosted.org/packages/32/a0/ba3119a95cd24ab1b78742e4e749c2bd93171b84585ae58834cc6947d966/ray-1.12.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "caca9985b834c846a78a4d1510380d3f", "sha256": "8f2c73eac500432a8f504e9f668ab70b84888931815eb79ef188698d46e36d78" }, "downloads": -1, "filename": "ray-1.12.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "caca9985b834c846a78a4d1510380d3f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 55795503, "upload_time": "2022-04-14T17:07:54", "upload_time_iso_8601": "2022-04-14T17:07:54.094479Z", "url": "https://files.pythonhosted.org/packages/9a/2e/ef2acbec29b2532bef51b74532192bc2b2ee31c120986b0f44ed688040ad/ray-1.12.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7699b2c1addb1b43e4aa3d2b8f830a1", "sha256": "d02d97d618fb8e568e758a4cb61ca4193eb33bc60c08e94fdc90080a7934b446" }, "downloads": -1, "filename": "ray-1.12.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "c7699b2c1addb1b43e4aa3d2b8f830a1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 25059971, "upload_time": "2022-04-14T17:08:08", "upload_time_iso_8601": "2022-04-14T17:08:08.102910Z", "url": "https://files.pythonhosted.org/packages/26/59/eba5ed9fa197bca6654c1d371d596a6ed4b2510d3c152af8e3c621039d33/ray-1.12.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e13e698a53acb4aa6997c1c572cabba8", "sha256": "90dac3e5eec6e69cb5a97c5bb94282a9e369056e8ca53b5490425f07aca416c5" }, "downloads": -1, "filename": "ray-1.12.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e13e698a53acb4aa6997c1c572cabba8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52907123, "upload_time": "2022-04-14T17:08:32", "upload_time_iso_8601": "2022-04-14T17:08:32.958600Z", "url": "https://files.pythonhosted.org/packages/f5/ee/8244864800869180b4d1e62933f6042da3f2722572b9c1742ace703a7721/ray-1.12.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b57031f7f2d3836d1b01b6cb0ca9008e", "sha256": "b172a2f97b1372b7599ee089978f67c596a67eaabe292c15c6a2b4a1b673f62f" }, "downloads": -1, "filename": "ray-1.12.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "b57031f7f2d3836d1b01b6cb0ca9008e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19881645, "upload_time": "2022-04-14T17:08:45", "upload_time_iso_8601": "2022-04-14T17:08:45.798265Z", "url": "https://files.pythonhosted.org/packages/ff/c8/a7b6f646b71c25af094ef9f017a4fefc8e5852ea6c8ec00b90e5c1b838f7/ray-1.12.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.12.0rc1": [ { "comment_text": "", "digests": { "md5": "1fecb52b9bba12e746f3d99af2bfc275", "sha256": "357b3161b924e20604bcb2b815da221a5e9f2d39c9db2b95698fae40b1d59fc8" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "1fecb52b9bba12e746f3d99af2bfc275", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55975640, "upload_time": "2022-04-04T20:17:44", "upload_time_iso_8601": "2022-04-04T20:17:44.472135Z", "url": "https://files.pythonhosted.org/packages/c6/53/8bc421398e26dca817a88cac3b45c80ae04ee889d6e6d3f3ffbff0c8a7c7/ray-1.12.0rc1-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bca9eb581077003ab764e05e8210ed0c", "sha256": "fe79040836151e7014bdd59ed4f3ef9ea7715dffc1ad4d1e593ea2740857ed2c" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bca9eb581077003ab764e05e8210ed0c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53206324, "upload_time": "2022-04-04T20:22:36", "upload_time_iso_8601": "2022-04-04T20:22:36.638641Z", "url": "https://files.pythonhosted.org/packages/58/0c/9911562e5cc9d393f9b7f96f3b1862b829bab4d9c319ea9193df78743eb4/ray-1.12.0rc1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9eb1c08a2476a63a62524c25989ed3ae", "sha256": "e68450f238898fdc0e5c61b898723a8a2fe2aa31599bf4ce2c048c4ab780526f" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9eb1c08a2476a63a62524c25989ed3ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19995846, "upload_time": "2022-04-04T20:24:30", "upload_time_iso_8601": "2022-04-04T20:24:30.052485Z", "url": "https://files.pythonhosted.org/packages/c4/59/d9263443fd54af9d40517dde6bea735f1ef5784554973cff942c1eea3994/ray-1.12.0rc1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78fb8d50a3721f8ea478d17ad0f0cb47", "sha256": "d700e6fbf8ad0939336f62b0ebc4824486c493c1928ecb3205b9f9c827b105ea" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "78fb8d50a3721f8ea478d17ad0f0cb47", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55981291, "upload_time": "2022-04-04T20:29:36", "upload_time_iso_8601": "2022-04-04T20:29:36.804889Z", "url": "https://files.pythonhosted.org/packages/fe/2b/4f4e8f2b973429769481095a5cf82ec3f19a10a4da8ee7e884ec2ad4bdeb/ray-1.12.0rc1-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "366cc30c30276501a42df8c5f386cf5e", "sha256": "ac625378741439bf85e0c1eb53657658276b32dad6d4e74ac96c5c74275b068e" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "366cc30c30276501a42df8c5f386cf5e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53203723, "upload_time": "2022-04-04T20:34:37", "upload_time_iso_8601": "2022-04-04T20:34:37.880721Z", "url": "https://files.pythonhosted.org/packages/65/ad/bdc9bb67f60e0ee89bbb2fb0c79fc12e99e466e772d8ca5d65b381981171/ray-1.12.0rc1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6437d6db25bc8c2f9e52939aba454b40", "sha256": "b8a88e9bae011ff012a55bee8b2b4094070988295b762722e6d737dbc4f0f783" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6437d6db25bc8c2f9e52939aba454b40", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19997550, "upload_time": "2022-04-04T20:36:31", "upload_time_iso_8601": "2022-04-04T20:36:31.406007Z", "url": "https://files.pythonhosted.org/packages/db/fc/18ee83e0822aa1fa06c2c7c83f912868af64a678822487dbaffd1ead6191/ray-1.12.0rc1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b47a937a91891e0fafe29d041a9ee6d6", "sha256": "f2f9e7f54086516c000560bf5c748186cc07a3ba0c7647deeba2f5ec6a74d035" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "b47a937a91891e0fafe29d041a9ee6d6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 55809767, "upload_time": "2022-04-04T20:41:43", "upload_time_iso_8601": "2022-04-04T20:41:43.019704Z", "url": "https://files.pythonhosted.org/packages/2d/01/c11c2c375e4cf9d778f347a94b4dbb2fe7ae425b9237da53f440c102b95f/ray-1.12.0rc1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "438007b8647455591e2284c3ac6da1c0", "sha256": "244d22a18e7a0b07552aa27ebfcb23b54bc34154dff93c7b65e5f2d96069ea8c" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "438007b8647455591e2284c3ac6da1c0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52938225, "upload_time": "2022-04-04T20:46:34", "upload_time_iso_8601": "2022-04-04T20:46:34.805437Z", "url": "https://files.pythonhosted.org/packages/0b/e2/ed896eeacd8343421bb515303e0b1d7be3beaa01070f29534a84a790eff3/ray-1.12.0rc1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "189649f52e0f9951f0e627aaf0164d72", "sha256": "a56f4a4e29c45e9e01d823606bb81aa889b941f978762f68b7703cc185fb2ea8" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "189649f52e0f9951f0e627aaf0164d72", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19892252, "upload_time": "2022-04-04T20:48:27", "upload_time_iso_8601": "2022-04-04T20:48:27.373570Z", "url": "https://files.pythonhosted.org/packages/40/07/29e877195a0c9d0638672db74e08741b771410db9cc48638e3d488b97849/ray-1.12.0rc1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9383bf537cf6f5fc227e6b778accc8cf", "sha256": "980ee28354e446f345b933117825b410414ad49368bc19bfb23147accb35b038" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "9383bf537cf6f5fc227e6b778accc8cf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 55811676, "upload_time": "2022-04-04T20:53:40", "upload_time_iso_8601": "2022-04-04T20:53:40.931203Z", "url": "https://files.pythonhosted.org/packages/84/43/71b6c4c03edfa52e3d8cdb9e5f66e14abca0725d7ccae3d2ad5aafdfec10/ray-1.12.0rc1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "053d3bfb59fb61ac55b2bb0ed991877f", "sha256": "8881e30733b08a56b2250c1ce70dfff4a680b7beb09c03ac6b3993ee4bd8ecbe" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "053d3bfb59fb61ac55b2bb0ed991877f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52917322, "upload_time": "2022-04-04T20:58:31", "upload_time_iso_8601": "2022-04-04T20:58:31.874559Z", "url": "https://files.pythonhosted.org/packages/5b/39/aa194a4203ff98b53b93306d35778887ff3b7622e254fe62dda0f9d72d20/ray-1.12.0rc1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e609606450a7b9974fa8295bf7ccc78d", "sha256": "0e3cd2aef80a1c33edea68715f5171b7f3bc835dc3fa80c9aeef643855ad7d62" }, "downloads": -1, "filename": "ray-1.12.0rc1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "e609606450a7b9974fa8295bf7ccc78d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19892127, "upload_time": "2022-04-04T21:00:27", "upload_time_iso_8601": "2022-04-04T21:00:27.972195Z", "url": "https://files.pythonhosted.org/packages/7d/c3/1f09490d9844ba117fc6fb719422167f9bf7a27a35b4fa20552c066693fe/ray-1.12.0rc1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "8cc0e2f66b51c2e7a9f50b510a9a8898", "sha256": "f484f919fadfde40a09bc7e96566da5dbb03e1bf5175f492c8e0faa981660c1b" }, "downloads": -1, "filename": "ray-1.12.1-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "8cc0e2f66b51c2e7a9f50b510a9a8898", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55967126, "upload_time": "2022-05-16T22:38:01", "upload_time_iso_8601": "2022-05-16T22:38:01.973904Z", "url": "https://files.pythonhosted.org/packages/e7/1a/a9610abc4d7849fce2d4d62ef24836f9efe6b4f7f2385382f9b63b847b08/ray-1.12.1-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15b5446855f8e706fc7d1ab957d7c3b0", "sha256": "8bdb6686587e2a1a6f5aabea3027c2449dba9375911147a70acd98dc01373e76" }, "downloads": -1, "filename": "ray-1.12.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "15b5446855f8e706fc7d1ab957d7c3b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53197052, "upload_time": "2022-05-16T22:38:15", "upload_time_iso_8601": "2022-05-16T22:38:15.207719Z", "url": "https://files.pythonhosted.org/packages/ad/3a/ebc3a3c9453acd209db7342beab91e02d0e6b05bf7a6cd9d6fe708c66445/ray-1.12.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c837b766ed9ce84441ff6f4378fbaf1c", "sha256": "a8775e8c6f3669f28da24dc534c65dc42a0dba3279288af95d6d37574f241850" }, "downloads": -1, "filename": "ray-1.12.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c837b766ed9ce84441ff6f4378fbaf1c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19986230, "upload_time": "2022-05-16T22:38:21", "upload_time_iso_8601": "2022-05-16T22:38:21.910925Z", "url": "https://files.pythonhosted.org/packages/f9/ed/c8c608ff6d07096295761cf8eab9778941451ead3cad3b73c1b87f2166b0/ray-1.12.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ba9372e5fa11965567fb6b81893401e", "sha256": "cc3fe87403c2ab3477e96e49c56e4d98c7cb54677370a0a5ba0e20c15fc76cd7" }, "downloads": -1, "filename": "ray-1.12.1-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "5ba9372e5fa11965567fb6b81893401e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55966137, "upload_time": "2022-05-16T22:38:32", "upload_time_iso_8601": "2022-05-16T22:38:32.638127Z", "url": "https://files.pythonhosted.org/packages/7d/97/6c10a5f479c74733478a2991208b058e2f2e2a422bdd5fdef2715d26e88d/ray-1.12.1-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "885ac34f7161b4d0c51049d2537e365f", "sha256": "e429012fa60f4562d650accd11b21fa4b752efc28ab205305be5e0e49d9e4d45" }, "downloads": -1, "filename": "ray-1.12.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "885ac34f7161b4d0c51049d2537e365f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53194426, "upload_time": "2022-05-16T22:38:41", "upload_time_iso_8601": "2022-05-16T22:38:41.564023Z", "url": "https://files.pythonhosted.org/packages/f3/dc/568707a9fafe3d348590588575031dcd99a2f604f7dbffafb60ee1bc2489/ray-1.12.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "645d913cd654564906e24fb132e38550", "sha256": "6aac545c35823f2693ca412ed1e706f10211926ff2e01ea64cd0b2b214dd1cd3" }, "downloads": -1, "filename": "ray-1.12.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "645d913cd654564906e24fb132e38550", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19901645, "upload_time": "2022-05-16T22:38:47", "upload_time_iso_8601": "2022-05-16T22:38:47.433376Z", "url": "https://files.pythonhosted.org/packages/b4/6d/37ddaf21cb50e93932919dd68dc965c9975bddf78802d156551d6a3db3f1/ray-1.12.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "888e9abc099be417e20e32544d9c617e", "sha256": "578a9da60c4e981dc8b1bc6058ed0355f00ae77ad3be3fa271d74ad39d6cd3c7" }, "downloads": -1, "filename": "ray-1.12.1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "888e9abc099be417e20e32544d9c617e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 55794630, "upload_time": "2022-05-16T22:39:36", "upload_time_iso_8601": "2022-05-16T22:39:36.046877Z", "url": "https://files.pythonhosted.org/packages/b5/e2/40542e46f3f765b9e845087f11fe20d596ffbe081e826dcb8129a28d8a92/ray-1.12.1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81b04e5683b18cdb60af6f07462c39a2", "sha256": "95eead495961e3fc47fd1a2c9b8528a41cf53c8141a04e4aa6d49ae0416ffcdd" }, "downloads": -1, "filename": "ray-1.12.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "81b04e5683b18cdb60af6f07462c39a2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52928937, "upload_time": "2022-05-16T22:39:45", "upload_time_iso_8601": "2022-05-16T22:39:45.107273Z", "url": "https://files.pythonhosted.org/packages/48/d2/4980315a5133202132f0d7f1a24d2bb50952282c83bc3d8061e831bf77cf/ray-1.12.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7733eb0fe631b29616ad879c57a567c5", "sha256": "45402dc41b251682d6d37c54370e8a1795fffaaaf1c95a36c93ec43d2ceef5e9" }, "downloads": -1, "filename": "ray-1.12.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7733eb0fe631b29616ad879c57a567c5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19801011, "upload_time": "2022-05-16T22:39:50", "upload_time_iso_8601": "2022-05-16T22:39:50.703066Z", "url": "https://files.pythonhosted.org/packages/49/d9/4226c2072d104aa8b975fba1695197c9d3e9fdda96789ba6e6ac7f27e076/ray-1.12.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e10967ce363070fd15dc0c2be7c0571", "sha256": "2cec0e468296811906b82d7787d5d809646f465343e9842ccaf2e8da11e1f08c" }, "downloads": -1, "filename": "ray-1.12.1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "5e10967ce363070fd15dc0c2be7c0571", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 55796625, "upload_time": "2022-05-16T22:39:58", "upload_time_iso_8601": "2022-05-16T22:39:58.571920Z", "url": "https://files.pythonhosted.org/packages/17/a4/0949c91dbe54f3c5f1868b1fc145056c30d4031f77e131eb3027bd31b6f8/ray-1.12.1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d20b108311120158220d3ffd83eb205", "sha256": "f546a4f56828a2fc21b605f8ac448dc29aaa120bb759fb00c090974638ae0e20" }, "downloads": -1, "filename": "ray-1.12.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1d20b108311120158220d3ffd83eb205", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52908115, "upload_time": "2022-05-16T22:40:10", "upload_time_iso_8601": "2022-05-16T22:40:10.763798Z", "url": "https://files.pythonhosted.org/packages/c7/53/0ddbbe11f175d321a67d95b08fa4500b13c900b47a2305bdd1db44286cd5/ray-1.12.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "419a505cd980067c1c0897a1600aaadf", "sha256": "8b4c7051170d39b566f5b13129f3a72d219664d780abd71b4eb5f81cdf705d57" }, "downloads": -1, "filename": "ray-1.12.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "419a505cd980067c1c0897a1600aaadf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19800765, "upload_time": "2022-05-16T22:40:16", "upload_time_iso_8601": "2022-05-16T22:40:16.839712Z", "url": "https://files.pythonhosted.org/packages/99/92/64d21284a56c9cfc72de51fb5d4b9e3d5b4fbb04bf0e4679594ceeee14ea/ray-1.12.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "3cb6026af2bfe07d7b089a0e03f026a4", "sha256": "6e43b3bc2be85869276405de54e2b89e0a6fdd0d8c86f11aa9b29bf4023a4f53" }, "downloads": -1, "filename": "ray-1.2.0-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "3cb6026af2bfe07d7b089a0e03f026a4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 47880143, "upload_time": "2021-02-13T01:38:33", "upload_time_iso_8601": "2021-02-13T01:38:33.509897Z", "url": "https://files.pythonhosted.org/packages/8a/9e/eb67f8f647dfa84e7d7c6405148af67a4bdbf1313003a6ba0fa95059830d/ray-1.2.0-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cff82e711a0c75a4bda967e6a6ecc5a8", "sha256": "e5586d1901801852d255fe2eb7f28a85933affd731dfaf65b7f326fa40e803e1" }, "downloads": -1, "filename": "ray-1.2.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cff82e711a0c75a4bda967e6a6ecc5a8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 47539692, "upload_time": "2021-02-13T01:38:38", "upload_time_iso_8601": "2021-02-13T01:38:38.660597Z", "url": "https://files.pythonhosted.org/packages/1a/3c/75913c91bd5a3411156628acb8be6437776a48608ff3d8d55b2f90ad8e43/ray-1.2.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aefd9388098cf4a3bda93cee04b88b90", "sha256": "ffe5c00ca4e82ded2fe02fb8b97b2e50401b8c487e15b778abf0de2c124e3809" }, "downloads": -1, "filename": "ray-1.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "aefd9388098cf4a3bda93cee04b88b90", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15157237, "upload_time": "2021-02-13T01:38:42", "upload_time_iso_8601": "2021-02-13T01:38:42.270987Z", "url": "https://files.pythonhosted.org/packages/57/19/3266bf0a00d0996a3be95df24ef789133f42f0664c62c3b01163dc26fda5/ray-1.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bb3d339a64fd11d13389f3ce84cfaba", "sha256": "13d3a5d7c9068c21c20ca4a029ab6ca8acaa82f9597a4814e2c33fe727fe9694" }, "downloads": -1, "filename": "ray-1.2.0-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "4bb3d339a64fd11d13389f3ce84cfaba", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 47843729, "upload_time": "2021-02-13T01:38:46", "upload_time_iso_8601": "2021-02-13T01:38:46.499065Z", "url": "https://files.pythonhosted.org/packages/e6/37/a9af3781b41cc2d9b98125c20a3d90e712e8dbe980bf86c6ae37eb9aa65d/ray-1.2.0-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b595addd62be54fb4085a76854cf704d", "sha256": "5d26afc4df8dd3ae4c95dd9b057cd010dd85b58d174b0c1871349f7b128f00e3" }, "downloads": -1, "filename": "ray-1.2.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b595addd62be54fb4085a76854cf704d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 47541056, "upload_time": "2021-02-13T01:38:51", "upload_time_iso_8601": "2021-02-13T01:38:51.641524Z", "url": "https://files.pythonhosted.org/packages/11/14/15d0f0aec20a4674a996429160565a071688f27f49f789327ebed8188ffb/ray-1.2.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c14a5c93a709788039c748c428da839", "sha256": "35b18cd7b410d6e891195aa41ab780367c01497f69f623cf18c936524b3c90f9" }, "downloads": -1, "filename": "ray-1.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5c14a5c93a709788039c748c428da839", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15159690, "upload_time": "2021-02-13T01:38:55", "upload_time_iso_8601": "2021-02-13T01:38:55.374517Z", "url": "https://files.pythonhosted.org/packages/8e/78/5acbec462d3f5ecaa4b514d4d2a3765134270c92c93d60e6230bb1a212d9/ray-1.2.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40eac6711939f8eef3504a32b52b43fc", "sha256": "4fc80fd9fdc95a021614f6ce017fff5788edb7b35869d3e7d47100d87485badd" }, "downloads": -1, "filename": "ray-1.2.0-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "40eac6711939f8eef3504a32b52b43fc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 47679721, "upload_time": "2021-02-13T01:38:59", "upload_time_iso_8601": "2021-02-13T01:38:59.367162Z", "url": "https://files.pythonhosted.org/packages/11/04/a856f1ebbaf293fc765399bd69e3293a51adbd095cd40ae6f10e2d6b4728/ray-1.2.0-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "161ff242a45903c67942a30eccd7bd1b", "sha256": "38544f494ea9cfa31bc280db331fe818e1fbc69d2a3fca7ae614d29eb34e9656" }, "downloads": -1, "filename": "ray-1.2.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "161ff242a45903c67942a30eccd7bd1b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 47298506, "upload_time": "2021-02-13T01:39:04", "upload_time_iso_8601": "2021-02-13T01:39:04.347753Z", "url": "https://files.pythonhosted.org/packages/8b/eb/c4b2b01e4b7f86a5c2e7d34b33d7c128ae8dd13dbb4a2552374f0eeceaa4/ray-1.2.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "534ff22d3b6338aa045ca1803664ba45", "sha256": "e095c5c7d59bd7c172c1a517d0db83df65c65ed6cb771d58ac17ec94276f8f39" }, "downloads": -1, "filename": "ray-1.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "534ff22d3b6338aa045ca1803664ba45", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15054976, "upload_time": "2021-02-13T01:39:08", "upload_time_iso_8601": "2021-02-13T01:39:08.049616Z", "url": "https://files.pythonhosted.org/packages/50/6e/c8b9cd73be46c8fb33034654623703f9c82c87349c53212c34da261798fc/ray-1.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "7536c52464ecd1f30be75836f62bb0f0", "sha256": "fd845b62c6b9b9d7e2cc93b612d3e060b3397f23d358067fa98e2634bc27402c" }, "downloads": -1, "filename": "ray-1.3.0-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "7536c52464ecd1f30be75836f62bb0f0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 50232048, "upload_time": "2021-04-22T20:25:11", "upload_time_iso_8601": "2021-04-22T20:25:11.999599Z", "url": "https://files.pythonhosted.org/packages/67/2b/ec2660cf5caa92ee999c1fe31726afbda2843fa8032498c39934d7b918f0/ray-1.3.0-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cce33dfee64c7ed80e10c8a73c1f0387", "sha256": "bc9838fe1da554a79b6811f1154fba086934427f71093d281fe8817b6579cbce" }, "downloads": -1, "filename": "ray-1.3.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cce33dfee64c7ed80e10c8a73c1f0387", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49720759, "upload_time": "2021-04-22T20:26:29", "upload_time_iso_8601": "2021-04-22T20:26:29.421243Z", "url": "https://files.pythonhosted.org/packages/22/d0/4de04f5c879bd55cbd39afd2d06b281998684ab85865d18c15541208a6f0/ray-1.3.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "898dfdf2fe3698f952ed2a5b577a2f5d", "sha256": "8cd074c09b4bdeb92a05ac0cbc6dbc90a32222402be6dd77b7aef52197855ad7" }, "downloads": -1, "filename": "ray-1.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "898dfdf2fe3698f952ed2a5b577a2f5d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15634276, "upload_time": "2021-04-22T20:26:57", "upload_time_iso_8601": "2021-04-22T20:26:57.347851Z", "url": "https://files.pythonhosted.org/packages/22/29/c3fb10a05a8f069efa60404b8c4e19b0c29c095fa9ddd44a16dbdce2fbf4/ray-1.3.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54e37cc6564c6d0727dd3cbf1234c29b", "sha256": "b92180cb35e7df11494403514af614bd90374a7f65b2a081018bd1803c1ed9e5" }, "downloads": -1, "filename": "ray-1.3.0-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "54e37cc6564c6d0727dd3cbf1234c29b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50201287, "upload_time": "2021-04-22T20:27:46", "upload_time_iso_8601": "2021-04-22T20:27:46.507710Z", "url": "https://files.pythonhosted.org/packages/c2/97/213cbb8a27854e4632f5cdd67699d50d3dbfeb9181c7a121309d8688a5fc/ray-1.3.0-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b42d10d4715e50f6a226db46bc491717", "sha256": "1d2c3b26e7bc1de58a996e07576034c7cc5c3754b94c3ee767e6cb04332b5835" }, "downloads": -1, "filename": "ray-1.3.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b42d10d4715e50f6a226db46bc491717", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 49719999, "upload_time": "2021-04-22T20:28:53", "upload_time_iso_8601": "2021-04-22T20:28:53.247869Z", "url": "https://files.pythonhosted.org/packages/0b/d0/33b6f8789cec27ac07e33de987eef9430b211c7d8284437371e45d37bbd5/ray-1.3.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a3f9df13fdd318afe08028bf296a7ba", "sha256": "b078d7f0ba368cc33f0ee7443c611d6094433571646e68b1245ef6679fd1f028" }, "downloads": -1, "filename": "ray-1.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2a3f9df13fdd318afe08028bf296a7ba", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15636142, "upload_time": "2021-04-22T20:29:01", "upload_time_iso_8601": "2021-04-22T20:29:01.164866Z", "url": "https://files.pythonhosted.org/packages/19/3c/f280f79f6016685da8587dea2206fde47f5fba96f79a2ddde3516373678f/ray-1.3.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27177fabd6c3ad0dfeaed1ffa1aeb0a2", "sha256": "c61b5e5d7ebc329281cdc673a5d7e8dc8ce8ace4f98e149e33b9b527d03e6b65" }, "downloads": -1, "filename": "ray-1.3.0-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "27177fabd6c3ad0dfeaed1ffa1aeb0a2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 50030087, "upload_time": "2021-04-22T20:29:46", "upload_time_iso_8601": "2021-04-22T20:29:46.355298Z", "url": "https://files.pythonhosted.org/packages/c0/ab/c8f92027688a435e95accc7a5b6db43a60621f55d6fe7d7aa0de96723065/ray-1.3.0-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e332d82ce29cb9467a605358070002e", "sha256": "cc442969ff76dea17c5c4fe9e9640d74309fe22cda52e81516ed57e38e29a377" }, "downloads": -1, "filename": "ray-1.3.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0e332d82ce29cb9467a605358070002e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 49479841, "upload_time": "2021-04-22T20:30:57", "upload_time_iso_8601": "2021-04-22T20:30:57.382804Z", "url": "https://files.pythonhosted.org/packages/b8/82/591538eb5c856fc7dfc08d05fcca9f2cb5f341825337561475ca7140948d/ray-1.3.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2ada6e4cb3bebd794cc565c4dca9d7b", "sha256": "17b95fe02112f5f618b02bec49b74b9634f04e3db509712b859e0defe0647c1c" }, "downloads": -1, "filename": "ray-1.3.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "a2ada6e4cb3bebd794cc565c4dca9d7b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15533406, "upload_time": "2021-04-22T20:31:31", "upload_time_iso_8601": "2021-04-22T20:31:31.491500Z", "url": "https://files.pythonhosted.org/packages/be/83/682da093a4951edbf575a0abf12fd623cfd4b2de03bf61ac5502cd3baa05/ray-1.3.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "30c9253b9e98521f26cf43907161adde", "sha256": "34532ecd8867751f880739324ba698d9ab7aa5bd7ff41677b879aaa6099b4276" }, "downloads": -1, "filename": "ray-1.4.0-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "30c9253b9e98521f26cf43907161adde", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 50254188, "upload_time": "2021-06-07T20:25:49", "upload_time_iso_8601": "2021-06-07T20:25:49.834159Z", "url": "https://files.pythonhosted.org/packages/b5/21/099900754f7a74daf696bb95bebe125715542f8ed22017731db07458dfa9/ray-1.4.0-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f647b7f649be3be0dfde797ab2a7d886", "sha256": "ff1e1aa6921c78ffa8e0c0eba49c8207e16a1f79bff1250c03fd2890f91108c4" }, "downloads": -1, "filename": "ray-1.4.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f647b7f649be3be0dfde797ab2a7d886", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49433446, "upload_time": "2021-06-07T20:26:15", "upload_time_iso_8601": "2021-06-07T20:26:15.943958Z", "url": "https://files.pythonhosted.org/packages/a9/ce/60cdb0aeedce803e4e27e90212195e24fb36498fcde11725dc439d5624bf/ray-1.4.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "763ac6b576fcdaba43f1018971f925c0", "sha256": "2b639565356e87b22e9158a1ef91fb492d9b7ff89f7ca506036965f5c4f71b90" }, "downloads": -1, "filename": "ray-1.4.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "763ac6b576fcdaba43f1018971f925c0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15781916, "upload_time": "2021-06-07T20:26:24", "upload_time_iso_8601": "2021-06-07T20:26:24.422154Z", "url": "https://files.pythonhosted.org/packages/73/d5/b3cc14ae18412ceec7e7c0fe16c4ac3ac2498eab33a2b2b7d1638e84c62c/ray-1.4.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c172433c484b3e344ef57858f0dd4a45", "sha256": "a8696e6aa6b14ab1e0282cb8e3a84c4496ea47a4008105f731913b3364f5a1a0" }, "downloads": -1, "filename": "ray-1.4.0-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "c172433c484b3e344ef57858f0dd4a45", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50218971, "upload_time": "2021-06-07T20:26:39", "upload_time_iso_8601": "2021-06-07T20:26:39.699474Z", "url": "https://files.pythonhosted.org/packages/6d/22/9d4fed33a9ec128b83f55498c3e47c64952606787643007b9f2582348190/ray-1.4.0-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59da6e84e5e085cb5fe9f4ae8f8a1bcb", "sha256": "4ceaf52224c090f2a1ddcae9daa61fc08b7473f7e3e3a47c7954491fe0c05071" }, "downloads": -1, "filename": "ray-1.4.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "59da6e84e5e085cb5fe9f4ae8f8a1bcb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 49434385, "upload_time": "2021-06-07T20:26:55", "upload_time_iso_8601": "2021-06-07T20:26:55.677325Z", "url": "https://files.pythonhosted.org/packages/5c/7a/34d018cc6a72b0dd42c6d9fad5fb34c8cc2140a785450bed201d4b2f3427/ray-1.4.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa51065b7f67bdb63d433239cf5d51dd", "sha256": "cf5ea375f0f5e47b89398c10a6bd857f4ee635414d781312439c878dbc097e54" }, "downloads": -1, "filename": "ray-1.4.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "fa51065b7f67bdb63d433239cf5d51dd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15782833, "upload_time": "2021-06-07T20:27:07", "upload_time_iso_8601": "2021-06-07T20:27:07.748508Z", "url": "https://files.pythonhosted.org/packages/32/32/43adc33523e82873c8b5061c2c27db2c30606f071f5a4fb544c9014aadee/ray-1.4.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3599971e13703244941153b71497861", "sha256": "44d6d9e1e1defda73c58c2ec111c9c179f647559cc3f3775c694f4a7de0bdd30" }, "downloads": -1, "filename": "ray-1.4.0-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "e3599971e13703244941153b71497861", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 50051202, "upload_time": "2021-06-07T20:27:24", "upload_time_iso_8601": "2021-06-07T20:27:24.627171Z", "url": "https://files.pythonhosted.org/packages/5d/ea/36f37a4c3cc8502968e3da8883672463674ec02b995a5555e1d5274c26a1/ray-1.4.0-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd34551ec948748d605f43948260370f", "sha256": "63417a9417651018ce08ef3741a7d8a702fd04d8ac07cedfdab0a42de9b760d6" }, "downloads": -1, "filename": "ray-1.4.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "dd34551ec948748d605f43948260370f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 49191330, "upload_time": "2021-06-07T20:27:52", "upload_time_iso_8601": "2021-06-07T20:27:52.501994Z", "url": "https://files.pythonhosted.org/packages/de/70/1160609526851679c5f4bebdbdda05ffe65a5d1cf5d2bffdcf06e213879e/ray-1.4.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69c16ba5d5326da91484f391d1dcd289", "sha256": "8b6acd370c27cfd8c8663db70a73371b6d59befaccf52c2684ec69ca3c2bb554" }, "downloads": -1, "filename": "ray-1.4.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "69c16ba5d5326da91484f391d1dcd289", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15680280, "upload_time": "2021-06-07T20:28:15", "upload_time_iso_8601": "2021-06-07T20:28:15.379632Z", "url": "https://files.pythonhosted.org/packages/e2/9f/be8f834cd72402219dd487aabe8fd2bc03cbaae2a879ad663eea989b6586/ray-1.4.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.4.0rc1": [ { "comment_text": "", "digests": { "md5": "89581da3b66c66c095d340e963ba5d1c", "sha256": "4e980354240a46a3cc5cac83074215f8fc662dd5af9d009a35142b0cc811355a" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "89581da3b66c66c095d340e963ba5d1c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 50260257, "upload_time": "2021-06-04T18:16:56", "upload_time_iso_8601": "2021-06-04T18:16:56.300849Z", "url": "https://files.pythonhosted.org/packages/dd/8c/386b84826298cff7022cc9166aaee43c9811afd2eeb9dfe9d3a402a92125/ray-1.4.0rc1-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a3e15097edc65e4a576e394f744287c", "sha256": "042f0d6a1839c6b2b73db4bfad50792cd5b766b9fe0c3adac29d2d5bc4b2622f" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3a3e15097edc65e4a576e394f744287c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49438908, "upload_time": "2021-06-04T18:17:14", "upload_time_iso_8601": "2021-06-04T18:17:14.414213Z", "url": "https://files.pythonhosted.org/packages/a1/8e/ed864c02430834641637c4aa6a27934c17fe262cb8df9be7cd0aa67f75f4/ray-1.4.0rc1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a567b694859aa36f6053098537235d9d", "sha256": "a9b9fffff6f095443b9d8a7267e2b62f2b4524ba0f89342c1ce03086ea38fad1" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a567b694859aa36f6053098537235d9d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15786845, "upload_time": "2021-06-04T18:17:23", "upload_time_iso_8601": "2021-06-04T18:17:23.750725Z", "url": "https://files.pythonhosted.org/packages/b2/56/c112a06c0c79356a2a4be0ce4030f3c322cfe782e94aa524e2310eb9ea95/ray-1.4.0rc1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91cca19a80bb57d1b45d12b5962c4d9f", "sha256": "7118f58af02726b2115142fe552f64aca62387cec00f01e6b8233755cdce9d9e" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "91cca19a80bb57d1b45d12b5962c4d9f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50224996, "upload_time": "2021-06-04T18:17:40", "upload_time_iso_8601": "2021-06-04T18:17:40.814575Z", "url": "https://files.pythonhosted.org/packages/0a/68/7d123a63959df13b0d2cf04ab3270be46cc3033a97a515131255bac18641/ray-1.4.0rc1-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b933f303ff25503ed4e54b4efff2f715", "sha256": "9112e2cf48b167d0d6715a1557b677e210ba6ef57bbef11286e188c8d925a30f" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b933f303ff25503ed4e54b4efff2f715", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 49439881, "upload_time": "2021-06-04T18:17:55", "upload_time_iso_8601": "2021-06-04T18:17:55.616331Z", "url": "https://files.pythonhosted.org/packages/2f/f3/ebc1244fb9a211f4f10b19e77dc3356b32b50cce92d4bdc33265a1fb9d5a/ray-1.4.0rc1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ae410c111d165bcdb214b32120318ef", "sha256": "a679a45b4d98195a605f41d473bb08d6515ef340d6399fa3fabc020518c055d1" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3ae410c111d165bcdb214b32120318ef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15787712, "upload_time": "2021-06-04T18:18:02", "upload_time_iso_8601": "2021-06-04T18:18:02.610142Z", "url": "https://files.pythonhosted.org/packages/5f/2c/2a1c715bda12dda0b7d81aaa462d8e9abf7a2403c51340f24c3c817f1137/ray-1.4.0rc1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9291e9087e1802a663c54116fa721b52", "sha256": "dc8bf55b1fc0f43df205ba8384a6ab091f0993878a809741eaf981b2453744dd" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "9291e9087e1802a663c54116fa721b52", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 50057183, "upload_time": "2021-06-04T18:18:17", "upload_time_iso_8601": "2021-06-04T18:18:17.757265Z", "url": "https://files.pythonhosted.org/packages/18/d8/160584ce578958a27ddb026925ea3b91626021da3bc4be69532e1855b031/ray-1.4.0rc1-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "211d52bb99324b1423b5a2f39edc2017", "sha256": "094d3e38b31ee0607ee24cc0d231bf1f12f4d9aef45bd294f9c7444b136fcd60" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "211d52bb99324b1423b5a2f39edc2017", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 49196748, "upload_time": "2021-06-04T18:18:34", "upload_time_iso_8601": "2021-06-04T18:18:34.507320Z", "url": "https://files.pythonhosted.org/packages/dd/8c/10ef530e5c748d8075192c60c4a8adcac5554707a674a1ce58d1b5eabe28/ray-1.4.0rc1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d718b8701b38b143395dec90c08b720", "sha256": "ed3dbad4ed6da77312f428fe7d46e1177daeb5e60a08df801c2587990829432b" }, "downloads": -1, "filename": "ray-1.4.0rc1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3d718b8701b38b143395dec90c08b720", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15685094, "upload_time": "2021-06-04T18:18:42", "upload_time_iso_8601": "2021-06-04T18:18:42.549013Z", "url": "https://files.pythonhosted.org/packages/b5/3b/0ec2f230f3ede69fcc937b7f9c6d3ac77a28af9bed64a84a762380f5d2ac/ray-1.4.0rc1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.4.0rc2": [ { "comment_text": "", "digests": { "md5": "8bddd032a6dbea78c9a30e8dc05fb53a", "sha256": "eea19535f06fc451c31ed4de16be645ac659872300a45bfe5a45fc1fdabdc771" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "8bddd032a6dbea78c9a30e8dc05fb53a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 50265735, "upload_time": "2021-06-06T02:02:19", "upload_time_iso_8601": "2021-06-06T02:02:19.569396Z", "url": "https://files.pythonhosted.org/packages/3d/91/6b2bdfee0853fb9f254242c038a2fb5b67c6efd505ca855fbfaf7caca4c3/ray-1.4.0rc2-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5732b6937a9fa718278bda16ffdae083", "sha256": "ab9a6ff5b6e5572d699ddad34ac3e1c70040552335f2046cfd64e3b4c8f1cfcc" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5732b6937a9fa718278bda16ffdae083", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49440963, "upload_time": "2021-06-06T02:02:38", "upload_time_iso_8601": "2021-06-06T02:02:38.754690Z", "url": "https://files.pythonhosted.org/packages/2a/2c/c66f1143154f3b66c3e4e659c16250164ec1070dc59c7e7bcb77fea8ba85/ray-1.4.0rc2-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f1d0dbe765f74716ff16a5b379c4429", "sha256": "a2340bc9ee915b7b69a757dc0de8d82f10e06bf01e9ef5bebfe6ba453da6c6ff" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4f1d0dbe765f74716ff16a5b379c4429", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15788882, "upload_time": "2021-06-06T02:02:47", "upload_time_iso_8601": "2021-06-06T02:02:47.803003Z", "url": "https://files.pythonhosted.org/packages/8c/10/136dfe45882519b9446ab26225ce742786ea20adefd310d5ced217b439fb/ray-1.4.0rc2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77e40e6bfe8b8c4bab4a085d77794fe4", "sha256": "fec00b7d3c52c0a09947d71713ea9722bed1d820f268d76410b44a7e9de6c974" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "77e40e6bfe8b8c4bab4a085d77794fe4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 50230511, "upload_time": "2021-06-06T02:03:04", "upload_time_iso_8601": "2021-06-06T02:03:04.834186Z", "url": "https://files.pythonhosted.org/packages/b1/23/1285c772d2ab5b5a99f4c94358a6f522b6eef8480d03524f3d2caca8c1b7/ray-1.4.0rc2-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24a2da862d43e517d68d31b90db610d6", "sha256": "f3cb63ea4edef08549f51678b655024ab8132887cfe2e6663b97b33128cad3c2" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "24a2da862d43e517d68d31b90db610d6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 49441930, "upload_time": "2021-06-06T02:03:19", "upload_time_iso_8601": "2021-06-06T02:03:19.333887Z", "url": "https://files.pythonhosted.org/packages/98/0b/e48d464ce51f3779809490d9dbac1291e3d4934c9e9940b819b57a2f5630/ray-1.4.0rc2-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8d3bf21fb946a9078fb4ab0d2c7560d", "sha256": "33bc9f8d9c3e0ffe2a2f8fc4be8ee61bf109b0d15e0c99baaf64e4c974e08855" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "d8d3bf21fb946a9078fb4ab0d2c7560d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15789743, "upload_time": "2021-06-06T02:03:33", "upload_time_iso_8601": "2021-06-06T02:03:33.964888Z", "url": "https://files.pythonhosted.org/packages/5d/02/43543c5faf73ec56de788149f7f3f9b3a231a6af63f05099a357c1ce3587/ray-1.4.0rc2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d3abb84b494bdbbbbbd8cbf9f16faef", "sha256": "6d5feaa8127f2a534315a319f3351db8282aa05a6024d60c866ca3dca03d4e5d" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "1d3abb84b494bdbbbbbd8cbf9f16faef", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 50062750, "upload_time": "2021-06-06T02:03:49", "upload_time_iso_8601": "2021-06-06T02:03:49.543442Z", "url": "https://files.pythonhosted.org/packages/f7/96/faa6e204ccc6ba688f352fab6b49b71898ac38e4835bfc39b96315e57540/ray-1.4.0rc2-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12dd1bf78704fd409001313b275f2517", "sha256": "f2fcc0b79179499375007af0de348d551f7d1cf8f2d9465c2f8a2dec8614de75" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "12dd1bf78704fd409001313b275f2517", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 49198784, "upload_time": "2021-06-06T02:04:08", "upload_time_iso_8601": "2021-06-06T02:04:08.147221Z", "url": "https://files.pythonhosted.org/packages/48/71/4daa28603dac739731db1b6f5b28bf2ef63e8a519884f43960ffcef9de35/ray-1.4.0rc2-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "886e8fcde2a837c54741dd6b8b7ec0b4", "sha256": "a41a809d9f0b7d02854c3c8699c376401a62c13203b34b30ea2973321c68c513" }, "downloads": -1, "filename": "ray-1.4.0rc2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "886e8fcde2a837c54741dd6b8b7ec0b4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15687137, "upload_time": "2021-06-06T02:04:18", "upload_time_iso_8601": "2021-06-06T02:04:18.644724Z", "url": "https://files.pythonhosted.org/packages/9f/1e/ab0488a53f4c702c41419d0198fe181cba50f8108427f65cdcd4107ef7a4/ray-1.4.0rc2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "c33d641dec010f6f67429b0cb89622dd", "sha256": "35d0f1bdde8bf5d697d9f352cc97328be0795ab7227ee8130870d6e1ea629aaf" }, "downloads": -1, "filename": "ray-1.4.1-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "c33d641dec010f6f67429b0cb89622dd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 52414630, "upload_time": "2021-06-30T22:04:46", "upload_time_iso_8601": "2021-06-30T22:04:46.104940Z", "url": "https://files.pythonhosted.org/packages/a2/eb/3bd9e250fbcac6bee57b4c57a07c6b47b6bafdf078d537b233794836e8d0/ray-1.4.1-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0336844210a02864df0cbf387ae9b87", "sha256": "4a047bdc5e4ce18b27e9ff871eee0c6ea626eb24f781c452e5b3bd93287ba7a3" }, "downloads": -1, "filename": "ray-1.4.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b0336844210a02864df0cbf387ae9b87", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 51588376, "upload_time": "2021-06-30T22:05:03", "upload_time_iso_8601": "2021-06-30T22:05:03.729304Z", "url": "https://files.pythonhosted.org/packages/13/ec/f727ddd3fbcdc6102eace62c9d5dd9d9ad8112d40eeb7de8783676aca24d/ray-1.4.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a33a79bf6c7f3d58121b8bff8bed2a2d", "sha256": "ef6171fbbe44d643b1bfc57d0d431db7d61f5e252aa13f8a332b44d8b6fdda4d" }, "downloads": -1, "filename": "ray-1.4.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a33a79bf6c7f3d58121b8bff8bed2a2d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15788127, "upload_time": "2021-06-30T22:05:11", "upload_time_iso_8601": "2021-06-30T22:05:11.889497Z", "url": "https://files.pythonhosted.org/packages/10/7d/f1f7fa988fe467ee0bb9efaf4ec74ad4e0bc66c024bbc387407f794df38d/ray-1.4.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25c538ae741f5a5eae89fe8cf7385747", "sha256": "40f26b1c113b258c85a6d7c47ba25c99b0ec8d6c72bff6da4cacf6db3a9f5d01" }, "downloads": -1, "filename": "ray-1.4.1-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "25c538ae741f5a5eae89fe8cf7385747", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 52374398, "upload_time": "2021-06-30T22:05:28", "upload_time_iso_8601": "2021-06-30T22:05:28.968466Z", "url": "https://files.pythonhosted.org/packages/0f/19/5662ae59e3e52a8f68e216624335c215dd990df1c85a047050cb9d74452a/ray-1.4.1-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0276581194878400263ff466f490c9c5", "sha256": "b9a02597203004ea97db88e54140f8987ddc3d55d3e5ddf470c30a2c2303ae02" }, "downloads": -1, "filename": "ray-1.4.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0276581194878400263ff466f490c9c5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 51585689, "upload_time": "2021-06-30T22:05:43", "upload_time_iso_8601": "2021-06-30T22:05:43.811544Z", "url": "https://files.pythonhosted.org/packages/12/b8/27822537e56693f8c91ced3e46c38220a84767d73cc3d01d5d5351aacc1e/ray-1.4.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "248cf8a96c0e80d8c31a996bf0454e62", "sha256": "858156ba5f03cb63771afb88c0483237e28344edd77a13e4aec2fa92af8f0dee" }, "downloads": -1, "filename": "ray-1.4.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "248cf8a96c0e80d8c31a996bf0454e62", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15788649, "upload_time": "2021-06-30T22:05:50", "upload_time_iso_8601": "2021-06-30T22:05:50.390401Z", "url": "https://files.pythonhosted.org/packages/e3/3a/7167a3ad2a534aad747075401e049b34a7a0940894c6e84bc90421b2c81d/ray-1.4.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f0b613ec92cad7deb5ff0b22a3bc5da", "sha256": "07ac820e9248004c20c885cade0ebedd8762b2776b2b79b860efe1f4748c845b" }, "downloads": -1, "filename": "ray-1.4.1-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "6f0b613ec92cad7deb5ff0b22a3bc5da", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52210286, "upload_time": "2021-06-30T22:06:05", "upload_time_iso_8601": "2021-06-30T22:06:05.108184Z", "url": "https://files.pythonhosted.org/packages/ca/ba/9dc837a3744e50ea8309969b38122c3391d2db0bc5ad5af753e22345a077/ray-1.4.1-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "618b9a780b7d45f310933220d443fcb8", "sha256": "045d1067bed40af76986259de1412de9f21f85d392801620cb6ac1e39b034631" }, "downloads": -1, "filename": "ray-1.4.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "618b9a780b7d45f310933220d443fcb8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 51341867, "upload_time": "2021-06-30T22:06:20", "upload_time_iso_8601": "2021-06-30T22:06:20.000421Z", "url": "https://files.pythonhosted.org/packages/a3/05/e5d8c14e3d2f31e12e32343656914be06fc96008210363fd07c886129d0a/ray-1.4.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aff3e361e4270124e25e0d7f1bc20ce4", "sha256": "3cc8d7f9d6a66cbc964a61a5535506a9982f7f9818b292491cc71a7bd17fa577" }, "downloads": -1, "filename": "ray-1.4.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "aff3e361e4270124e25e0d7f1bc20ce4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15686010, "upload_time": "2021-06-30T22:06:27", "upload_time_iso_8601": "2021-06-30T22:06:27.068924Z", "url": "https://files.pythonhosted.org/packages/12/9a/6a39dc93b4a681941f12fa0c16fc2b932121cc6a3a3c9adf1e50573fc884/ray-1.4.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f28dcb2a925006d2374d9625fe871e4", "sha256": "825a836d75aab85f3a5ca642acd829c3ecacc7b8ffe60e4207f43da691f426c5" }, "downloads": -1, "filename": "ray-1.4.1-cp39-cp39-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "2f28dcb2a925006d2374d9625fe871e4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52215413, "upload_time": "2021-06-30T22:06:44", "upload_time_iso_8601": "2021-06-30T22:06:44.850497Z", "url": "https://files.pythonhosted.org/packages/6d/ec/fa39547ed32c2f33b0af12a7a5a4c1364d6afb977069cb9ecc623c582a60/ray-1.4.1-cp39-cp39-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a608c2292853ad64939537116d8fb603", "sha256": "c01f114120c3055e3e4c8a72419ded7d6e1e3986e2a56fe1df3aba2d22e43534" }, "downloads": -1, "filename": "ray-1.4.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a608c2292853ad64939537116d8fb603", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 51341643, "upload_time": "2021-06-30T22:07:00", "upload_time_iso_8601": "2021-06-30T22:07:00.604661Z", "url": "https://files.pythonhosted.org/packages/ee/08/90ee4c208fd32a5fa50bc39e2bed7b52166ce408d72323711b743dc14ddd/ray-1.4.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "625bec41cd4ce71fe1722f37c173a369", "sha256": "6f00c78ea3468417cdb38ce488efea910182391903f8b3b3f3faa721a1aab221" }, "downloads": -1, "filename": "ray-1.4.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "625bec41cd4ce71fe1722f37c173a369", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15687348, "upload_time": "2021-06-30T22:07:07", "upload_time_iso_8601": "2021-06-30T22:07:07.150836Z", "url": "https://files.pythonhosted.org/packages/eb/64/67f973a95538a976fba2eb80d3259a12753f11d63d73eeec9be244915f4c/ray-1.4.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "6346a0f884c5fa8790f8666629c1b346", "sha256": "d2327eedab91cc768173354eff4d38930c99a843ba0fc2cfc5f96d7d48675b92" }, "downloads": -1, "filename": "ray-1.5.0-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "6346a0f884c5fa8790f8666629c1b346", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53585047, "upload_time": "2021-07-26T17:07:02", "upload_time_iso_8601": "2021-07-26T17:07:02.174511Z", "url": "https://files.pythonhosted.org/packages/76/7d/a609f9092ffbf4f2d4782bf8a75d98544d81828b2b3c52402ac8a8a7c63a/ray-1.5.0-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3328f9bb5d879a71c8e8b3f04d45a73", "sha256": "d3003e28d9757b1577c62d0ff18723d69d80d259c05a51674befbd2725450483" }, "downloads": -1, "filename": "ray-1.5.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b3328f9bb5d879a71c8e8b3f04d45a73", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 51521799, "upload_time": "2021-07-26T17:08:38", "upload_time_iso_8601": "2021-07-26T17:08:38.463053Z", "url": "https://files.pythonhosted.org/packages/02/f1/68f066ba58b87e384e5584615acd75d83917b989400d07d27945d76e8ed6/ray-1.5.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63776d8ac20ebbae55951aafa6521a46", "sha256": "bb39d761a1cc5e73c718c97f303971d9031e3bf1da58eacd5acae960aeea489b" }, "downloads": -1, "filename": "ray-1.5.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "63776d8ac20ebbae55951aafa6521a46", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15966952, "upload_time": "2021-07-26T17:09:10", "upload_time_iso_8601": "2021-07-26T17:09:10.185735Z", "url": "https://files.pythonhosted.org/packages/d8/fe/59aff69843b9a32d69912db3367bd77e17f97ca2fe2d61914ee7001a6953/ray-1.5.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85eb6db45b06c9cec22e7c4ad61c2a8b", "sha256": "4e4dbfdd50eff62a8bd37283f1772b5522c4c6131124edad161ef38e511999db" }, "downloads": -1, "filename": "ray-1.5.0-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "85eb6db45b06c9cec22e7c4ad61c2a8b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53542512, "upload_time": "2021-07-26T17:10:49", "upload_time_iso_8601": "2021-07-26T17:10:49.670268Z", "url": "https://files.pythonhosted.org/packages/33/00/949ae4327d214b96ae65c77900c28059dfe39abe94ceae91db919db706a2/ray-1.5.0-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9a3472727307d01dddd3e1d668ff32f", "sha256": "65d46a14571987ce40e6f919d4ae7ffd5acb68d4f365de1413029be487d8eb72" }, "downloads": -1, "filename": "ray-1.5.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b9a3472727307d01dddd3e1d668ff32f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 51521482, "upload_time": "2021-07-26T17:12:26", "upload_time_iso_8601": "2021-07-26T17:12:26.262564Z", "url": "https://files.pythonhosted.org/packages/6d/9f/7d9e91f657bb1739a473aa54a8dc82db5a97f1825aab5d6ef685e6755d5b/ray-1.5.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "804ce5ec392743eaebaa04115008b5ea", "sha256": "e0b900db635a1db79abf8865b7e6a62ceffb2e34dbc0684d8be38f2c9770c9e8" }, "downloads": -1, "filename": "ray-1.5.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "804ce5ec392743eaebaa04115008b5ea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15968479, "upload_time": "2021-07-26T17:12:58", "upload_time_iso_8601": "2021-07-26T17:12:58.835976Z", "url": "https://files.pythonhosted.org/packages/63/67/750e4554f38952baff14309f46bbb72d0a20f294f826ed16f86b0231c702/ray-1.5.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "670f6b453f23727b716829178663b784", "sha256": "288fa763a0c7ce41a786c5c03f80d1294282c19df76eb4dbb6b036b55bf6e5bf" }, "downloads": -1, "filename": "ray-1.5.0-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "670f6b453f23727b716829178663b784", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53377173, "upload_time": "2021-07-26T17:14:38", "upload_time_iso_8601": "2021-07-26T17:14:38.917836Z", "url": "https://files.pythonhosted.org/packages/46/29/ef96e1f998c5aadd9ff7a83d5fe5d72cbc0699a3a68b11f2517808955adc/ray-1.5.0-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb0b4efbafbaf9f03e36f623c0ac5835", "sha256": "79b0fb91c462939d94dc0eaf948be5e9814e710f8859e7fd5d0d0328564ae512" }, "downloads": -1, "filename": "ray-1.5.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cb0b4efbafbaf9f03e36f623c0ac5835", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 51283330, "upload_time": "2021-07-26T17:16:16", "upload_time_iso_8601": "2021-07-26T17:16:16.821804Z", "url": "https://files.pythonhosted.org/packages/d4/88/292f26ef4910bb062726231051ab0bd90a5203c70acbb7667fecbe671b22/ray-1.5.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3436fb6ce93f1efa7ad4996465f4d31a", "sha256": "e5859afaeb1778442055c69380e64c23d437a594425a68830333ca97d22729c0" }, "downloads": -1, "filename": "ray-1.5.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3436fb6ce93f1efa7ad4996465f4d31a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15864677, "upload_time": "2021-07-26T17:16:49", "upload_time_iso_8601": "2021-07-26T17:16:49.555106Z", "url": "https://files.pythonhosted.org/packages/98/14/e8d8b93b3fbe4112fdf8e086becbe43ec2a20a9a8aa9b68ae17e1bed6ede/ray-1.5.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fa723448482f96e9288605968eca33f", "sha256": "f70b3315c39a381b4dc32422b82ba9d8c9a4dbe083fa992a46e69a617be9f94d" }, "downloads": -1, "filename": "ray-1.5.0-cp39-cp39-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "1fa723448482f96e9288605968eca33f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 53380814, "upload_time": "2021-07-26T17:19:13", "upload_time_iso_8601": "2021-07-26T17:19:13.102587Z", "url": "https://files.pythonhosted.org/packages/f8/b3/51cdf7645843b84eb2112f1fd71f2823f7e818a7191eadb98e6c1a953287/ray-1.5.0-cp39-cp39-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3ad617fde64514e370e14c3e6441af6", "sha256": "3ce07420dbb26c9e8f74d655cc207ba3ed28c58b46dd40819e0ee40344bd1c8f" }, "downloads": -1, "filename": "ray-1.5.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e3ad617fde64514e370e14c3e6441af6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 51284371, "upload_time": "2021-07-26T17:21:48", "upload_time_iso_8601": "2021-07-26T17:21:48.795300Z", "url": "https://files.pythonhosted.org/packages/5d/c9/568225ac8dee2afb84170a144137d0a0424e4fb0948afc50daf62fc606b5/ray-1.5.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "501991f2c497ea82380932e9e94c3737", "sha256": "49132e7e10fc8b36d0c4b81490b343a9fcaacd6a500b0be5cbcc60d4f11b3350" }, "downloads": -1, "filename": "ray-1.5.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "501991f2c497ea82380932e9e94c3737", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15866217, "upload_time": "2021-07-26T17:22:21", "upload_time_iso_8601": "2021-07-26T17:22:21.943864Z", "url": "https://files.pythonhosted.org/packages/7b/1f/ec6402c1a5c12e63700bb8988bd98b086fcb89018a15da70c251ad9f6ad9/ray-1.5.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "ca9745538f4795cc375b385df3a32df6", "sha256": "e851c78d22ec1da3a6921681adeaee4b2d09e150a135cf1694c69975eeda9643" }, "downloads": -1, "filename": "ray-1.5.1-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "ca9745538f4795cc375b385df3a32df6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53585018, "upload_time": "2021-07-31T01:35:39", "upload_time_iso_8601": "2021-07-31T01:35:39.777277Z", "url": "https://files.pythonhosted.org/packages/a1/60/15e16af9707152848616f42225791c5863694c8cc49d03b521eb7fe9409d/ray-1.5.1-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9834e572fa9b8032f87bfd6f5127546", "sha256": "810acf08088e96fb9fe8ea883d6bb8a9eba10fe65284f7253c90d9fc1e4ead09" }, "downloads": -1, "filename": "ray-1.5.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "d9834e572fa9b8032f87bfd6f5127546", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 51522067, "upload_time": "2021-07-31T01:37:17", "upload_time_iso_8601": "2021-07-31T01:37:17.688675Z", "url": "https://files.pythonhosted.org/packages/6c/80/a0ff857edaad0487e08dcd333ba0eb7a6cae91439ff34abef37f48948129/ray-1.5.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e4bedad79e22a5ab6788dcce9db9e1f", "sha256": "38c1a3c45ac508f254f1065e6bbad2fc67813b20fda45a52512cceab2874c810" }, "downloads": -1, "filename": "ray-1.5.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9e4bedad79e22a5ab6788dcce9db9e1f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15966949, "upload_time": "2021-07-31T01:37:50", "upload_time_iso_8601": "2021-07-31T01:37:50.028235Z", "url": "https://files.pythonhosted.org/packages/82/9c/fc34b2e9c14d6943ba6fea922870744de46ffb5069a523e5448b19dbd87b/ray-1.5.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a42d5ad71a3ba627063ccc5f40d60471", "sha256": "93e8316e537709253e316b608cf60b5d3fe11c25b7fd05ba5ad413ba33ba2a2a" }, "downloads": -1, "filename": "ray-1.5.1-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "a42d5ad71a3ba627063ccc5f40d60471", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53542488, "upload_time": "2021-07-31T01:39:28", "upload_time_iso_8601": "2021-07-31T01:39:28.476193Z", "url": "https://files.pythonhosted.org/packages/09/52/e682cb1e4a198a1c70d8c64f5ba6d40c07c3d0e2084053485f7e1591d304/ray-1.5.1-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f084c84cabd6046081ff994774c6784", "sha256": "e5731425dfc46d9e9fdab3b5e2f8f58837d6d8048393e4de5f1659afd1d73c1d" }, "downloads": -1, "filename": "ray-1.5.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1f084c84cabd6046081ff994774c6784", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 51521458, "upload_time": "2021-07-31T01:41:06", "upload_time_iso_8601": "2021-07-31T01:41:06.409466Z", "url": "https://files.pythonhosted.org/packages/19/51/ac3db6e90d2cd3ab9c1bf69be65e014e812ebfa87f11a557715d68b75903/ray-1.5.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2e7ce33b8dd2ce83d3c22cd3706c627", "sha256": "ce88cff4f58ce2c1cb8fd02e9f66abe11b09ebe9287987035b8940d2c1d60f37" }, "downloads": -1, "filename": "ray-1.5.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e2e7ce33b8dd2ce83d3c22cd3706c627", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15968477, "upload_time": "2021-07-31T01:41:38", "upload_time_iso_8601": "2021-07-31T01:41:38.888423Z", "url": "https://files.pythonhosted.org/packages/e9/bb/a357e6968bf38a34ea192607728f4088e755a0c458f039646760df7e7d37/ray-1.5.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f8e2e17f68787786b5d12088702110a", "sha256": "907aad8f3696fe3c6f3b8041d51dd779a73994b97e3d67caa8bca1c6c9ced972" }, "downloads": -1, "filename": "ray-1.5.1-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "5f8e2e17f68787786b5d12088702110a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53377135, "upload_time": "2021-07-31T01:43:20", "upload_time_iso_8601": "2021-07-31T01:43:20.508208Z", "url": "https://files.pythonhosted.org/packages/85/20/40d0b5a467fc3e6156b3f3b239336fc9cd453bf3f19f626b6a227c091e93/ray-1.5.1-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7974a67f9e07bf2106cc50e90f63fc42", "sha256": "cc6ff47835cacc97cf131a3cb4f0d43088c6927915b78a8a9d6516533c8b2212" }, "downloads": -1, "filename": "ray-1.5.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7974a67f9e07bf2106cc50e90f63fc42", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 51283443, "upload_time": "2021-07-31T01:44:57", "upload_time_iso_8601": "2021-07-31T01:44:57.086002Z", "url": "https://files.pythonhosted.org/packages/61/93/34776d97c51eb099bbcc789d10057e8891024b85d376c55fa7313ed4ba8e/ray-1.5.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acca07150db939b933b6300043536ae2", "sha256": "9e67b3bf67f6ad9ac732e5d508301036af1c5c40058993554e8477cbe536dc22" }, "downloads": -1, "filename": "ray-1.5.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "acca07150db939b933b6300043536ae2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15864644, "upload_time": "2021-07-31T01:45:29", "upload_time_iso_8601": "2021-07-31T01:45:29.770789Z", "url": "https://files.pythonhosted.org/packages/28/83/a422c854edcc0096cf1e18265552f33f6ba96e690eecb2d68f4acae3babf/ray-1.5.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cf7fb5f7946a87b76bd8ef1e3d3c8bcf", "sha256": "06883069e51cbaf0fd1a66dbb12f2ebfa1c71ae8c4d5a8f0a79db6627f4525cf" }, "downloads": -1, "filename": "ray-1.5.1-cp39-cp39-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "cf7fb5f7946a87b76bd8ef1e3d3c8bcf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 53380797, "upload_time": "2021-07-31T01:47:09", "upload_time_iso_8601": "2021-07-31T01:47:09.008899Z", "url": "https://files.pythonhosted.org/packages/39/e3/91d7b93667f05ee53f26ab8f2bcbbbae939ee9a7840dc83dc55348f91569/ray-1.5.1-cp39-cp39-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dbbde0d68341b44f1257155dcf88baf", "sha256": "21650055dcd2bc6e37a0bf50605ee3a2f5852b33c0f7efb606271ce34ac18ea2" }, "downloads": -1, "filename": "ray-1.5.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8dbbde0d68341b44f1257155dcf88baf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 51284417, "upload_time": "2021-07-31T01:48:46", "upload_time_iso_8601": "2021-07-31T01:48:46.394699Z", "url": "https://files.pythonhosted.org/packages/10/8c/afa3333bcf27860ffa184a8f1796390807455b88dfa0309c7bdc2e647495/ray-1.5.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02e7583a036e0c52e1d595ea1661d8a1", "sha256": "8cdf7c341f8d1f8c20fe35fd2025880801f619fee38022ea615efb1035e03826" }, "downloads": -1, "filename": "ray-1.5.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "02e7583a036e0c52e1d595ea1661d8a1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15866235, "upload_time": "2021-07-31T01:49:18", "upload_time_iso_8601": "2021-07-31T01:49:18.769888Z", "url": "https://files.pythonhosted.org/packages/d7/bd/5967980c6ffe8a60d4bd04a7595936d5dc5a160529a799cd94da6073dced/ray-1.5.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "837bf767e7f00e099d93eaf933d8fa60", "sha256": "06a668c548308df2bb8a995f707eccee054a31aa16edf946c7e8c80ea4e51a63" }, "downloads": -1, "filename": "ray-1.5.2-cp36-cp36m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "837bf767e7f00e099d93eaf933d8fa60", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53585239, "upload_time": "2021-08-12T17:58:07", "upload_time_iso_8601": "2021-08-12T17:58:07.434766Z", "url": "https://files.pythonhosted.org/packages/50/be/5392fbe088fc9bcd70fde86fdff678cc0d35e8c5321b86a78ca873446461/ray-1.5.2-cp36-cp36m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04ab44ae2cdf7437bc15533ccba6b2e8", "sha256": "ef5f5276856ecf5a59cb20b8fd6fa5c0bb6b1eab6667929a785919911f671687" }, "downloads": -1, "filename": "ray-1.5.2-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "04ab44ae2cdf7437bc15533ccba6b2e8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 51011467, "upload_time": "2021-08-12T18:00:02", "upload_time_iso_8601": "2021-08-12T18:00:02.684173Z", "url": "https://files.pythonhosted.org/packages/e5/8e/d77faec7150a54611d773a712dfd61296ee6fd0d875da7ccba36693523fd/ray-1.5.2-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c46ff479fcb619b80a79438c1b32674", "sha256": "9399cc52e24eefe297a2e03866e2a379ca527cfeaa7ae7ac4b795622a93befe4" }, "downloads": -1, "filename": "ray-1.5.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1c46ff479fcb619b80a79438c1b32674", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15967061, "upload_time": "2021-08-12T18:00:41", "upload_time_iso_8601": "2021-08-12T18:00:41.291980Z", "url": "https://files.pythonhosted.org/packages/ea/78/fdb5379614cb349f9e7273dd8fa579e96519e25e1e5853b4fe5fa5264cc3/ray-1.5.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ff5db7d278d86542ebf0adfb540237b", "sha256": "a08e0e01941ffffdee47487e50e35c0ebb2808306ebfa7962ffe5fcc96fcd56e" }, "downloads": -1, "filename": "ray-1.5.2-cp37-cp37m-macosx_10_13_intel.whl", "has_sig": false, "md5_digest": "5ff5db7d278d86542ebf0adfb540237b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53542668, "upload_time": "2021-08-12T18:02:39", "upload_time_iso_8601": "2021-08-12T18:02:39.158780Z", "url": "https://files.pythonhosted.org/packages/d9/19/a8dfaa22ba42650d244d0854392ef7db1425fc4cad2cf54cba8e79eb167e/ray-1.5.2-cp37-cp37m-macosx_10_13_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a6ec93548811ff6f6d00aefa632fccb", "sha256": "899ac3353332d4bb3a08d42be12f64847aa0ec4b3a927f1d426cb0714187ecb7" }, "downloads": -1, "filename": "ray-1.5.2-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2a6ec93548811ff6f6d00aefa632fccb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 51012208, "upload_time": "2021-08-12T18:04:32", "upload_time_iso_8601": "2021-08-12T18:04:32.381169Z", "url": "https://files.pythonhosted.org/packages/ef/9e/c601f4066d63e0b4daf8a7946e0884c8cb083b905d96f09dddd29d23df46/ray-1.5.2-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff73a4f0f4662d39b0313ee82f5b6b79", "sha256": "d4ce401d901a2f015e77822298623f79fdef22f4cbededd37dfdb78f56f165a4" }, "downloads": -1, "filename": "ray-1.5.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ff73a4f0f4662d39b0313ee82f5b6b79", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15968600, "upload_time": "2021-08-12T18:05:10", "upload_time_iso_8601": "2021-08-12T18:05:10.082292Z", "url": "https://files.pythonhosted.org/packages/47/13/3099330dc8f33e9102127063f8492b5fd1526ae3d6672b0d790807e698a1/ray-1.5.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93270ed134e760f8ec6fda6fb19ecebd", "sha256": "446e234879182fc711da83222989c028d7d24bd69de89f35396e8efa220eabc3" }, "downloads": -1, "filename": "ray-1.5.2-cp38-cp38-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "93270ed134e760f8ec6fda6fb19ecebd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53377398, "upload_time": "2021-08-12T18:07:07", "upload_time_iso_8601": "2021-08-12T18:07:07.713537Z", "url": "https://files.pythonhosted.org/packages/a8/7f/c04a40b6f1a91e1770a40306229bd264a6a2ced77d3a8cafe0de351c3392/ray-1.5.2-cp38-cp38-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4334a7d12932456f9a48358ca2be183f", "sha256": "ec483622475d1c5548442b8f173e6197ccdc1801f89326f7be90477b17ac0ef3" }, "downloads": -1, "filename": "ray-1.5.2-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4334a7d12932456f9a48358ca2be183f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 50740734, "upload_time": "2021-08-12T18:09:00", "upload_time_iso_8601": "2021-08-12T18:09:00.738496Z", "url": "https://files.pythonhosted.org/packages/6d/82/75c2a719896f69b0289301594e94b93877345ef2f6168c334ba801dd3418/ray-1.5.2-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32862cfdc0378f05cc62baa81c7ca0dc", "sha256": "e4f6344c9d0dd440e3ed24bd5da50224de43560b4a99b7090c14e8bb58292660" }, "downloads": -1, "filename": "ray-1.5.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "32862cfdc0378f05cc62baa81c7ca0dc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15864799, "upload_time": "2021-08-12T18:10:05", "upload_time_iso_8601": "2021-08-12T18:10:05.389451Z", "url": "https://files.pythonhosted.org/packages/94/88/eaa4864eb82d1f165b098b28c19a3cebb38fa4e95e2982c6e8fcfb6bb2a2/ray-1.5.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42c5ae9ccf297f783ea92f3c4e6893d1", "sha256": "73825b8da1226e253e24d1a8485bc2233684d13c70b999a7230acb5a6c1897b2" }, "downloads": -1, "filename": "ray-1.5.2-cp39-cp39-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "42c5ae9ccf297f783ea92f3c4e6893d1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 53380986, "upload_time": "2021-08-12T18:12:03", "upload_time_iso_8601": "2021-08-12T18:12:03.296084Z", "url": "https://files.pythonhosted.org/packages/2c/6b/ae9c28f7308866efbffb4387b714e0384423ad67f083acdebdf5d21b2d3e/ray-1.5.2-cp39-cp39-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97d83cc16fdfbf3f1730bcec13391231", "sha256": "9e8d8578e262ff1b8cda9993bd30905dac6025e73a1d7309dd8b9e9739dad91d" }, "downloads": -1, "filename": "ray-1.5.2-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "97d83cc16fdfbf3f1730bcec13391231", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 50718752, "upload_time": "2021-08-12T18:13:54", "upload_time_iso_8601": "2021-08-12T18:13:54.783099Z", "url": "https://files.pythonhosted.org/packages/b6/91/d7cc5b2247d1563a2eb75a41c132710eb96ea95b0b6a067dc9c58c23bc26/ray-1.5.2-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "554b2ff5e816bf8619eb9fc3a2e22601", "sha256": "1d663277bce5405b9e8a9d165f7fc544c6347191c89486c58dcbad66df4a435a" }, "downloads": -1, "filename": "ray-1.5.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "554b2ff5e816bf8619eb9fc3a2e22601", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15866343, "upload_time": "2021-08-12T18:14:32", "upload_time_iso_8601": "2021-08-12T18:14:32.176154Z", "url": "https://files.pythonhosted.org/packages/cc/ca/a8cfc5bf2031b6c88d028f3eab1e460e9d1ef60da06ead16baae7cf064b5/ray-1.5.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "5771ec9dba35034027a1efaf844130a1", "sha256": "17b34001296c6a9b6a625dec78261d24bf07cfaad3c936afeab4b1424f26e89e" }, "downloads": -1, "filename": "ray-1.6.0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "5771ec9dba35034027a1efaf844130a1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 52572532, "upload_time": "2021-08-23T20:14:00", "upload_time_iso_8601": "2021-08-23T20:14:00.454040Z", "url": "https://files.pythonhosted.org/packages/da/9c/57db71813910ace81d53e5b3a3ae466659fcfc8bdd3cdab35457b7e41ac5/ray-1.6.0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e89f916e58895a43835d2a921811b413", "sha256": "f499016503b52c1ae09ae1cb3c64736c5093edde36633a15259cd21345753ab6" }, "downloads": -1, "filename": "ray-1.6.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e89f916e58895a43835d2a921811b413", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 49570870, "upload_time": "2021-08-23T20:28:13", "upload_time_iso_8601": "2021-08-23T20:28:13.243148Z", "url": "https://files.pythonhosted.org/packages/67/3c/33dfa2b55f553032b1700a023571e2545df0cc91a09bcbe72fb9a0e373bb/ray-1.6.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dacf6016337fc99eb122ef77c9f9d840", "sha256": "d25a9b43f0ad139bad6bcf0b4177974242e0e089272fedb06bef06112c231aa9" }, "downloads": -1, "filename": "ray-1.6.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dacf6016337fc99eb122ef77c9f9d840", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 15693296, "upload_time": "2021-08-23T20:23:18", "upload_time_iso_8601": "2021-08-23T20:23:18.682138Z", "url": "https://files.pythonhosted.org/packages/5c/b9/b6587d8c0a92fc28cffe0867c6cbdeb0fcc82f7f8e4d37a14c4bbd7c9798/ray-1.6.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6eedf8d31918d641506b01106c15d1dc", "sha256": "c08492b755b700642ada4571301c0f2b7c4a4ec61689c97393c572bd605ab33c" }, "downloads": -1, "filename": "ray-1.6.0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "6eedf8d31918d641506b01106c15d1dc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 52549051, "upload_time": "2021-08-23T20:14:09", "upload_time_iso_8601": "2021-08-23T20:14:09.239517Z", "url": "https://files.pythonhosted.org/packages/31/fe/f931f0f602472d4116913ed30dce5073ddf91fa694337619eebd8f186f31/ray-1.6.0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b81d5930c5912862590ec425e76b290e", "sha256": "74a78cfa24e63254636602d089adc276eadc67ce7a9a0ce4e2918b2eb0232a69" }, "downloads": -1, "filename": "ray-1.6.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b81d5930c5912862590ec425e76b290e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 49572856, "upload_time": "2021-08-23T20:26:08", "upload_time_iso_8601": "2021-08-23T20:26:08.697372Z", "url": "https://files.pythonhosted.org/packages/d8/59/0f453e4bca1af5f36d9fc3c0f6893523e25ae62b9ecc2c36c61d7bb5d52f/ray-1.6.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc21b243cbafc7057c70ea348b7717ff", "sha256": "3fe7675b9239b45549ab196b2237dfd143e9ac86aab01dbd181ab6fb014a8ed1" }, "downloads": -1, "filename": "ray-1.6.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "fc21b243cbafc7057c70ea348b7717ff", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 15694564, "upload_time": "2021-08-23T20:23:23", "upload_time_iso_8601": "2021-08-23T20:23:23.635687Z", "url": "https://files.pythonhosted.org/packages/ad/55/6604055acd095baaa1265bfeafa23e050972bb1672dc2e0532d3cbd968ff/ray-1.6.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75169fdc197d4cb46affede38fa384e6", "sha256": "8851666e7807e133f27d4027ec1ced8a457020ffb2783ec3a67d946d4688e339" }, "downloads": -1, "filename": "ray-1.6.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "75169fdc197d4cb46affede38fa384e6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52376401, "upload_time": "2021-08-23T20:14:18", "upload_time_iso_8601": "2021-08-23T20:14:18.404297Z", "url": "https://files.pythonhosted.org/packages/84/40/91c471a6129d58cd07293170f0325bcaba5917b8f10e97342ebaa2e4a13c/ray-1.6.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65bac3b948c2204bd8506874a79f10f4", "sha256": "9938fb57d2e40e3b40d8fd354614730c5a34597391d78ed91a186f2621b7db5e" }, "downloads": -1, "filename": "ray-1.6.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "65bac3b948c2204bd8506874a79f10f4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 49304111, "upload_time": "2021-08-23T20:26:26", "upload_time_iso_8601": "2021-08-23T20:26:26.941093Z", "url": "https://files.pythonhosted.org/packages/c6/ad/eb0be6c9bc7ead69490185b3c17f194df26a6b97793e687d9d1301d3e7e4/ray-1.6.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0b8815238f5f959f3e1f2d6d7984c7a", "sha256": "655078d7b0279606da57a74830fb8e1721bdecddd96b82573d85f48f9ea0b03e" }, "downloads": -1, "filename": "ray-1.6.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "f0b8815238f5f959f3e1f2d6d7984c7a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 15592700, "upload_time": "2021-08-23T20:23:28", "upload_time_iso_8601": "2021-08-23T20:23:28.071998Z", "url": "https://files.pythonhosted.org/packages/06/c6/8ed00947eb12e4fad805f79bedf993e57072cdadba4f25047dd327c8fc0f/ray-1.6.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63517d98d5f38a0d1cf6196f963620e1", "sha256": "3d823cbfe6a4fa0b49d55c7ba3e20ed7ac69a58aa1a9bbe6930597ecafdb4e3e" }, "downloads": -1, "filename": "ray-1.6.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "63517d98d5f38a0d1cf6196f963620e1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52379246, "upload_time": "2021-08-23T20:14:28", "upload_time_iso_8601": "2021-08-23T20:14:28.073605Z", "url": "https://files.pythonhosted.org/packages/e8/ad/307d64268fccab6182391d0f537266e6561c5d7b1fb4f425ca8363386d28/ray-1.6.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55d292e6fd99fce4281d0b63b83c7a97", "sha256": "e86a9871bee94c3042ad24190e9cec45a16b5f5053b48021e2b03a0a74e8ccbd" }, "downloads": -1, "filename": "ray-1.6.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "55d292e6fd99fce4281d0b63b83c7a97", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 49285124, "upload_time": "2021-08-23T20:26:51", "upload_time_iso_8601": "2021-08-23T20:26:51.105893Z", "url": "https://files.pythonhosted.org/packages/2d/9d/24f233ec79c095defdc66aca21eb0429f7d811c6f2f5095fe9e7e47d080e/ray-1.6.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58339305c989f60d97735b0e3596ef4e", "sha256": "5a684eb6a990f8e03fad2ee1259644e9d484ddbe5560ac4407264ec9b8066d82" }, "downloads": -1, "filename": "ray-1.6.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "58339305c989f60d97735b0e3596ef4e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 15593195, "upload_time": "2021-08-23T20:23:32", "upload_time_iso_8601": "2021-08-23T20:23:32.016807Z", "url": "https://files.pythonhosted.org/packages/f1/b4/53e68b5873287828e747a3c0f605db807e8e16dfbeaf41bca5e1bdc7359f/ray-1.6.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "04e72db22ac0b43e03795a8ac16b46da", "sha256": "01f654352c1b365164ee25221e5450c738c498f55a7aae0c46f952e2c0e1f3db" }, "downloads": -1, "filename": "ray-1.7.0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "04e72db22ac0b43e03795a8ac16b46da", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 54893670, "upload_time": "2021-10-07T17:21:50", "upload_time_iso_8601": "2021-10-07T17:21:50.075430Z", "url": "https://files.pythonhosted.org/packages/90/90/18444b8f1778af5c64d1362be667d2fce3e2320296f6ec790822428cda6d/ray-1.7.0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47d2ceb5a794f947930e4378b56d452b", "sha256": "3be58eb9fed36207b7f256c9665446a3bbee2b143d7f4cf08ba5a1b48995fa25" }, "downloads": -1, "filename": "ray-1.7.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "47d2ceb5a794f947930e4378b56d452b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53979437, "upload_time": "2021-10-07T17:21:57", "upload_time_iso_8601": "2021-10-07T17:21:57.332881Z", "url": "https://files.pythonhosted.org/packages/10/f9/f6e1ea367b970fedde59b89eb55e548fc1ccce98c3dbe33ec2a079689e15/ray-1.7.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abe8ff978ae9f2860b2c5dc98b3a5295", "sha256": "fa0c09743036d7b9895bdfa8e3d61096a96e41a28f02e4e461d1f7f8718523f3" }, "downloads": -1, "filename": "ray-1.7.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "abe8ff978ae9f2860b2c5dc98b3a5295", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18177554, "upload_time": "2021-10-07T17:22:01", "upload_time_iso_8601": "2021-10-07T17:22:01.996442Z", "url": "https://files.pythonhosted.org/packages/0e/37/0b4f919f1ad2867fea788218daaab294d968f92ec62a93ae39e52c02664b/ray-1.7.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efa0db7cf966279b57a1a2d172230c7c", "sha256": "d9cff662c9fc10f9e4a74b9b4fd88972850a4b745582653d951b3ffdb6a8138f" }, "downloads": -1, "filename": "ray-1.7.0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "efa0db7cf966279b57a1a2d172230c7c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 54866443, "upload_time": "2021-10-07T17:22:06", "upload_time_iso_8601": "2021-10-07T17:22:06.856072Z", "url": "https://files.pythonhosted.org/packages/e1/c1/d6e0b2cc16b588b2eb1f5f317ffe92195ee84956935ea8540bc0294bc192/ray-1.7.0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "377e0717141a28594fe6c0f66807fa30", "sha256": "f2915a30418a441b7ccda4e12f2b060b735d88b3a306e2e97798c15137ab7397" }, "downloads": -1, "filename": "ray-1.7.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "377e0717141a28594fe6c0f66807fa30", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53982732, "upload_time": "2021-10-07T17:22:12", "upload_time_iso_8601": "2021-10-07T17:22:12.804279Z", "url": "https://files.pythonhosted.org/packages/76/1c/eebdbcb025d53d5946a2bff959a9420309fdb8b8f60664935f51f50b273e/ray-1.7.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5ed5e5343230a5a0d01730a636f90cb", "sha256": "1cb379a425883ec8c98436bb92bca452692c2d1dafa9edb2f7509d07ff8696ab" }, "downloads": -1, "filename": "ray-1.7.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a5ed5e5343230a5a0d01730a636f90cb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 18180216, "upload_time": "2021-10-07T17:22:17", "upload_time_iso_8601": "2021-10-07T17:22:17.922904Z", "url": "https://files.pythonhosted.org/packages/2a/6a/6a91e056529c64ff5a5016192ca552028361bab73a6a6c84b63e361793d9/ray-1.7.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9269f025b8b280d09acee6d9fd170cc1", "sha256": "f70d230f77a39dc3471ff937ec4f5e7ecbd0de813408e91da2a17a2311c2008a" }, "downloads": -1, "filename": "ray-1.7.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "9269f025b8b280d09acee6d9fd170cc1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 54695143, "upload_time": "2021-10-07T17:22:22", "upload_time_iso_8601": "2021-10-07T17:22:22.676346Z", "url": "https://files.pythonhosted.org/packages/4a/bd/0b617143ccc58d4801657b953c3e648469732d7938b9a7c302ab2eb084e8/ray-1.7.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cedffee037f79abe82da4c8bd10f02e6", "sha256": "40e1a5c15993b34190ceef75296f9e725a8b6c73cb723ae060a709b3392fab7f" }, "downloads": -1, "filename": "ray-1.7.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "cedffee037f79abe82da4c8bd10f02e6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53714661, "upload_time": "2021-10-07T17:22:28", "upload_time_iso_8601": "2021-10-07T17:22:28.349423Z", "url": "https://files.pythonhosted.org/packages/0c/73/d3525380dfc6b37f1dbeb8d1508f27ee0bbec531dbfaf934efd64646ab63/ray-1.7.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4202b4036be70bae3758289a0e76ace", "sha256": "223d00aac45c93d013c3acee1498b44b9525e886e08220268a2a52c087565890" }, "downloads": -1, "filename": "ray-1.7.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "c4202b4036be70bae3758289a0e76ace", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 18074530, "upload_time": "2021-10-07T17:22:32", "upload_time_iso_8601": "2021-10-07T17:22:32.936883Z", "url": "https://files.pythonhosted.org/packages/e3/ba/5c1e1645b937ca0b4522985aab0a5d8a70b6e7e19ecb5b103319096a4e54/ray-1.7.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5858579761c4b2fd2a4f2ab91c7d1dd5", "sha256": "0453805695050f38213c4c71b24486a71d20b2ee185b97e9f14695416f25cbf1" }, "downloads": -1, "filename": "ray-1.7.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "5858579761c4b2fd2a4f2ab91c7d1dd5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 54699230, "upload_time": "2021-10-07T17:22:37", "upload_time_iso_8601": "2021-10-07T17:22:37.760882Z", "url": "https://files.pythonhosted.org/packages/29/3d/c1484b184de9c8d93a7ef1fc3bf7153cf8e2d8349506cae5d190ad6fd454/ray-1.7.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58b5dfcaa3ed7818dcda47012ea87d6e", "sha256": "52e8a6733eeb13dc7afb5fe91bc34347d789838ca926cbd09498e4d7cd8a8903" }, "downloads": -1, "filename": "ray-1.7.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "58b5dfcaa3ed7818dcda47012ea87d6e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 53689171, "upload_time": "2021-10-07T17:22:43", "upload_time_iso_8601": "2021-10-07T17:22:43.349351Z", "url": "https://files.pythonhosted.org/packages/8d/29/874afa66ca22a90d798558268ee0bb5527ec7fbdb159954302f443b216c8/ray-1.7.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c01899691a08cebdf887465c4e72e60", "sha256": "ab12fd3381721776e0121b68194df6a15264803fc39935af3de0e5b6d7987e3b" }, "downloads": -1, "filename": "ray-1.7.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "1c01899691a08cebdf887465c4e72e60", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 18075811, "upload_time": "2021-10-07T17:22:47", "upload_time_iso_8601": "2021-10-07T17:22:47.671630Z", "url": "https://files.pythonhosted.org/packages/75/a9/1b4836380660156964dc26bc2038c1c1b084bbaa7434150f3b9c510f4e66/ray-1.7.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.7.0rc0": [ { "comment_text": "", "digests": { "md5": "78150908cfb0a5f40f1238c62f2db81c", "sha256": "30bf1c8f9c8fb0f307c7e81d4248a0771372660211a41f9a592f3d1ce7421eeb" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "78150908cfb0a5f40f1238c62f2db81c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 54899636, "upload_time": "2021-09-20T23:22:44", "upload_time_iso_8601": "2021-09-20T23:22:44.650800Z", "url": "https://files.pythonhosted.org/packages/a8/2f/8e1e2009cb224dc4c95a044cc6212e629fc15c53e383bace833317695f5e/ray-1.7.0rc0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c3fc4c0c5dd4de06d66aff94bbf4a61", "sha256": "9ddf28d1fe08a76fb4ae5fed66969f1b44a65521cfd00c48a1f07709c9634e21" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1c3fc4c0c5dd4de06d66aff94bbf4a61", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53938756, "upload_time": "2021-09-20T23:22:49", "upload_time_iso_8601": "2021-09-20T23:22:49.834789Z", "url": "https://files.pythonhosted.org/packages/34/22/2ec8c126aaf2de4547d6d79d834e62081dae1171634cc13cbcf119d09687/ray-1.7.0rc0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f4b475f84d34108cce57267fd9f6e1f", "sha256": "955e858238d67c7687466a1cbf5527bb16bc5a473609105be5c5bac95d6145aa" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4f4b475f84d34108cce57267fd9f6e1f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18199488, "upload_time": "2021-09-20T23:22:53", "upload_time_iso_8601": "2021-09-20T23:22:53.219685Z", "url": "https://files.pythonhosted.org/packages/e6/15/a6c093f78dc9785e523c5d0acaf35aa7e12e30af226adfaad707819e0da4/ray-1.7.0rc0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc329497df9c59e56a3c6f1a0159a3c1", "sha256": "212997a3a94838eb20b3c7b6744619e0a0518ae0e58092f4e4cd467eb068860e" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "fc329497df9c59e56a3c6f1a0159a3c1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 54875837, "upload_time": "2021-09-20T23:22:57", "upload_time_iso_8601": "2021-09-20T23:22:57.574344Z", "url": "https://files.pythonhosted.org/packages/02/27/cd348e82e39b370271dca52fa28c5ffa2e3360d43cf1fa7d8722b830028e/ray-1.7.0rc0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7db2a0340c97f24aa7a6a7cacd1b0217", "sha256": "5f92988c64e3509dbb62d7e3c505ce04657723ee52e2ce10cb0e8ebf7bff70ba" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7db2a0340c97f24aa7a6a7cacd1b0217", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53941389, "upload_time": "2021-09-20T23:23:02", "upload_time_iso_8601": "2021-09-20T23:23:02.619703Z", "url": "https://files.pythonhosted.org/packages/c0/05/00dc20057d9f2f611bed1acad172d29dbf759219bbc98adc6d7d26615539/ray-1.7.0rc0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3138c188c0146c72ff26ec2ee11ab80c", "sha256": "fa94553cdd7b1613fc8b48309cb167141f751c6c2c68cf23f24f069d5c7fa287" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3138c188c0146c72ff26ec2ee11ab80c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 18200564, "upload_time": "2021-09-20T23:23:06", "upload_time_iso_8601": "2021-09-20T23:23:06.726971Z", "url": "https://files.pythonhosted.org/packages/3a/52/c948de59fb3f939227823e4dac09e6beae2a4b74c3dd73146b5028e91a0d/ray-1.7.0rc0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c507bd0b641687d3883227e062b354a6", "sha256": "12a24207a567387e66ba36f55d3cc90caedea4571a79835785d5bb28357743e5" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "c507bd0b641687d3883227e062b354a6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 54705271, "upload_time": "2021-09-20T23:23:10", "upload_time_iso_8601": "2021-09-20T23:23:10.866379Z", "url": "https://files.pythonhosted.org/packages/60/49/7f12cd9aa6cec425c2a88ed34a36d137d364974d882f80a2b41aa2d78e8f/ray-1.7.0rc0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0153db1e898aee650d84e9972619018", "sha256": "03bc4ef060994dd53fed2a816969523fdeaf40ccc67412280fb7060b3c69ef26" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b0153db1e898aee650d84e9972619018", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53675440, "upload_time": "2021-09-20T23:23:16", "upload_time_iso_8601": "2021-09-20T23:23:16.060911Z", "url": "https://files.pythonhosted.org/packages/c8/19/f251ebb32a373a92c00473745d4177659408cf9ee293a9373422afb79235/ray-1.7.0rc0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12d978d8d5013c24618ce7069920083e", "sha256": "0fd2a97e4bc85a5e86a185d6111c41d5539b3cc2c357e8e40a1372767e42b44f" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "12d978d8d5013c24618ce7069920083e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 18099771, "upload_time": "2021-09-20T23:23:19", "upload_time_iso_8601": "2021-09-20T23:23:19.123336Z", "url": "https://files.pythonhosted.org/packages/9a/89/bba9b2f12d2253c57017c15e330d9c1225fd9baa1c573d68b2c40393e679/ray-1.7.0rc0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11f0e1ee3e6c0d88c2069e20b7800ebb", "sha256": "087e09ada5381181e10947c39ab82b7117e798ee9463df6b22a8803e1e270fd5" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "11f0e1ee3e6c0d88c2069e20b7800ebb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 54710420, "upload_time": "2021-09-20T23:23:23", "upload_time_iso_8601": "2021-09-20T23:23:23.029710Z", "url": "https://files.pythonhosted.org/packages/ea/aa/0195471c3b488dfe0161a1b25fd87a1e96a718e24adf6480a335b219cf4b/ray-1.7.0rc0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59777b0650aef6b744cc9b81ff469ea7", "sha256": "4721721d39c8444efed15b97ff61a0fc1a34940ed2cf3fd654ddc1aa793360e3" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "59777b0650aef6b744cc9b81ff469ea7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 53651821, "upload_time": "2021-09-20T23:23:28", "upload_time_iso_8601": "2021-09-20T23:23:28.040255Z", "url": "https://files.pythonhosted.org/packages/2c/2a/f40fc242f3e80b1dd7b766531043549286fc15c28c1882cb8db1bbdb8b28/ray-1.7.0rc0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1bb28c9578d86a494f5610dc95b8a257", "sha256": "dd536e64b7f44de4de915d239ec57327a63ca452c2437abf712c316d73dd18e5" }, "downloads": -1, "filename": "ray-1.7.0rc0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "1bb28c9578d86a494f5610dc95b8a257", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 18102086, "upload_time": "2021-09-20T23:23:31", "upload_time_iso_8601": "2021-09-20T23:23:31.413112Z", "url": "https://files.pythonhosted.org/packages/27/de/5a39013f5c9ec32361090a2f1e5fa0c6791c8f8a1aa73874fe3663b95414/ray-1.7.0rc0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "22738459a841978113ab5d7a3f89555d", "sha256": "2b6d3b72c4d126cb7ee490c1c79a1a0fb1568089f3dab603ab4a41185e220492" }, "downloads": -1, "filename": "ray-1.7.1-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "22738459a841978113ab5d7a3f89555d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 54891208, "upload_time": "2021-10-22T18:01:29", "upload_time_iso_8601": "2021-10-22T18:01:29.065974Z", "url": "https://files.pythonhosted.org/packages/a0/c2/241c0235089cee7ca7581834ccd7596b031f4f4bc7a881a5f2ef17c6c5d5/ray-1.7.1-cp36-cp36m-macosx_10_15_intel.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "917851d544675bd579430ffdf354ffb6", "sha256": "3efd9213953df717e7f748c590a808ecd785c6b33ec6dfa50b2a7171287abbdd" }, "downloads": -1, "filename": "ray-1.7.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "917851d544675bd579430ffdf354ffb6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53984567, "upload_time": "2021-10-22T18:01:37", "upload_time_iso_8601": "2021-10-22T18:01:37.280164Z", "url": "https://files.pythonhosted.org/packages/cb/56/52fd7b9324e7e02089111b4b81771d9d1a77b146c68e5fab864dfa07fd6d/ray-1.7.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "c62aae13a44ae0da657aea37b329fcb7", "sha256": "902f911aaa6df3e309076f5d81d8bed472693e060dcba0538095bd14006e9f3d" }, "downloads": -1, "filename": "ray-1.7.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c62aae13a44ae0da657aea37b329fcb7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18138623, "upload_time": "2021-10-22T18:01:41", "upload_time_iso_8601": "2021-10-22T18:01:41.665205Z", "url": "https://files.pythonhosted.org/packages/65/20/e44924f6be87016e4d457acb16db25352fbc8e7e87a302fa0847a039e570/ray-1.7.1-cp36-cp36m-win_amd64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "77781b9eca3c116e601637d4b3cabbe2", "sha256": "d516e3a932179edbe7387d1b89d9a745d90dd86bd3e5f784ff6d35e17ec3d8c1" }, "downloads": -1, "filename": "ray-1.7.1-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "77781b9eca3c116e601637d4b3cabbe2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 54864708, "upload_time": "2021-10-22T18:01:49", "upload_time_iso_8601": "2021-10-22T18:01:49.806455Z", "url": "https://files.pythonhosted.org/packages/79/c1/3c6e18b3b97d1ace852fae325cc1d8a5b2339fdce183d5d913a4e3dc8967/ray-1.7.1-cp37-cp37m-macosx_10_15_intel.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "b111ee12f94272ca9d7f00effe13e59c", "sha256": "28c48c48878c4e6c5e97b10e3b50ff7b774eb97b224083610118d1b10108780b" }, "downloads": -1, "filename": "ray-1.7.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "b111ee12f94272ca9d7f00effe13e59c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53987509, "upload_time": "2021-10-22T18:01:58", "upload_time_iso_8601": "2021-10-22T18:01:58.670535Z", "url": "https://files.pythonhosted.org/packages/ff/c3/8d0ef2e150a20018f21192b79a6d0b9e14aa8ff68e9b8d4c60f595973871/ray-1.7.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "8d012d7a05efed15926df69d9a9c95e7", "sha256": "120162e76b3de2b8d60e2ae4bf509afacfcc0c80d178f2803ad97f354097d8bc" }, "downloads": -1, "filename": "ray-1.7.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8d012d7a05efed15926df69d9a9c95e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 18139835, "upload_time": "2021-10-22T18:02:03", "upload_time_iso_8601": "2021-10-22T18:02:03.383466Z", "url": "https://files.pythonhosted.org/packages/d2/5b/47b809b9bbf9b2f2046174addf60f20907726a899a2e34b6a11ae5fa48e5/ray-1.7.1-cp37-cp37m-win_amd64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "7b872c77f1d918073b685bf87f72762d", "sha256": "490af53db6c7aff6905edb17feace60cae5894b3b5dbbf48e3d3d1ef980f6760" }, "downloads": -1, "filename": "ray-1.7.1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "7b872c77f1d918073b685bf87f72762d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 54694580, "upload_time": "2021-10-22T18:02:10", "upload_time_iso_8601": "2021-10-22T18:02:10.486945Z", "url": "https://files.pythonhosted.org/packages/9a/88/eda17fc6f63e022400b3e6143488fcfbd978aa188c99ce1d77a4699e4add/ray-1.7.1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "4cc6fd66217a49ca6a2b9db915e5c3d8", "sha256": "1de888597cab2b2908ef6422cce2015ba2bf73712f076c12dc77bc71959f78c8" }, "downloads": -1, "filename": "ray-1.7.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4cc6fd66217a49ca6a2b9db915e5c3d8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 53718295, "upload_time": "2021-10-22T18:02:17", "upload_time_iso_8601": "2021-10-22T18:02:17.497370Z", "url": "https://files.pythonhosted.org/packages/66/8c/5480cbdadb5486703f50a31634d9c75816087cb1073172d913793e761a33/ray-1.7.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "12a30b39779879f87b3c0e7e0bb24408", "sha256": "d8a5de62c90c282739eccfcc6bfc07de78589e39f6afe87b97b38dde0e5dd4ff" }, "downloads": -1, "filename": "ray-1.7.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "12a30b39779879f87b3c0e7e0bb24408", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 18032494, "upload_time": "2021-10-22T18:02:22", "upload_time_iso_8601": "2021-10-22T18:02:22.404882Z", "url": "https://files.pythonhosted.org/packages/aa/97/3374f7760a0c800b240f14f81e7affa0e86eed3a09f72b9a29dd46b8fc09/ray-1.7.1-cp38-cp38-win_amd64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "4d9182e6a62c5cf02710e4e9a8053e92", "sha256": "e7f3a10f1a4233091e6a51fff781450c3c229e06d4399dd1ac79f81a335f5b2e" }, "downloads": -1, "filename": "ray-1.7.1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "4d9182e6a62c5cf02710e4e9a8053e92", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 54698025, "upload_time": "2021-10-22T18:02:28", "upload_time_iso_8601": "2021-10-22T18:02:28.549256Z", "url": "https://files.pythonhosted.org/packages/c3/c4/9b1f638f6f8abf47d059e9d05e80406673a1f46f0f4c85491c2e9ee0103f/ray-1.7.1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "1463c1624929aaa7c0901d28bdc519d8", "sha256": "6c5ddde972f14081149955c27b9e0d447984462b9e0d550604ffdecf01041015" }, "downloads": -1, "filename": "ray-1.7.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1463c1624929aaa7c0901d28bdc519d8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 53693576, "upload_time": "2021-10-22T18:02:36", "upload_time_iso_8601": "2021-10-22T18:02:36.076906Z", "url": "https://files.pythonhosted.org/packages/85/e0/975cafa43108f96af81403842f6f6120ea0ef47bbdb2fc70fdcfc79b251d/ray-1.7.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" }, { "comment_text": "", "digests": { "md5": "7528f1c1dd023f0690bad1eab9e6aafd", "sha256": "59b2dffc26e46f6377b2bac8824f752748a1ef1f03eb646ec01ac07a6cac9a64" }, "downloads": -1, "filename": "ray-1.7.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "7528f1c1dd023f0690bad1eab9e6aafd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 18034359, "upload_time": "2021-10-22T18:02:41", "upload_time_iso_8601": "2021-10-22T18:02:41.769825Z", "url": "https://files.pythonhosted.org/packages/3a/09/d5a7bbc689483ccfd7a906629b54e2722a8ce091bff034ea61a8eb02cea3/ray-1.7.1-cp39-cp39-win_amd64.whl", "yanked": true, "yanked_reason": "https://github.com/ray-project/ray/issues/19813" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "d559b3281290cbfdcf8907af5913ad97", "sha256": "77d6db630041103c31ffbe05de082a42a35ef2c7cbeaff064bdc2dc2e03bd55e" }, "downloads": -1, "filename": "ray-1.8.0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "d559b3281290cbfdcf8907af5913ad97", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55941578, "upload_time": "2021-11-02T18:23:04", "upload_time_iso_8601": "2021-11-02T18:23:04.605633Z", "url": "https://files.pythonhosted.org/packages/91/8f/51d8b6d1f6fa28edcc70bcf82edc4a637dbfda267c498b506441ab0c9255/ray-1.8.0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "437e10351012c80528a1e0d7b4a90934", "sha256": "1d67bd2d08d6ad9e308d0e2ecd513c780054aac8ac59a8a1fe8546e05d8bd700" }, "downloads": -1, "filename": "ray-1.8.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "437e10351012c80528a1e0d7b4a90934", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 54666414, "upload_time": "2021-11-02T18:23:11", "upload_time_iso_8601": "2021-11-02T18:23:11.558155Z", "url": "https://files.pythonhosted.org/packages/dc/a7/380d78b8103f62f29444c863212ac297727bc45be8df2a9dd0f72a9aa055/ray-1.8.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dadee08551218a8056a3a107816cfd05", "sha256": "d1a685b2f13a33a31aca7984a17803bf193bb84471e25d51c7a26f8574d8bffd" }, "downloads": -1, "filename": "ray-1.8.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dadee08551218a8056a3a107816cfd05", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 18421313, "upload_time": "2021-11-02T18:23:16", "upload_time_iso_8601": "2021-11-02T18:23:16.697049Z", "url": "https://files.pythonhosted.org/packages/f4/75/9ad22265e783d24152443716f5ab260641e6c65e88ee0a2dd744b15b3c39/ray-1.8.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "854193bf24a3762cf39d58bd7be287b3", "sha256": "34346a99047ea450aa8281fd9ff1079b0a6cc1e88192daefff4c30bda222a3e1" }, "downloads": -1, "filename": "ray-1.8.0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "854193bf24a3762cf39d58bd7be287b3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55906673, "upload_time": "2021-11-02T18:23:21", "upload_time_iso_8601": "2021-11-02T18:23:21.988026Z", "url": "https://files.pythonhosted.org/packages/1a/be/afddd3ea7f6bf7f67b71c76e261b6eb840cebf673ccb1de4b941a81d3cce/ray-1.8.0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e0f204d6d785b6dc890e2cc0aae1818", "sha256": "28c16a6203ca298d8726b6a33d6928304fca78246655c2da20e5e38799d71c48" }, "downloads": -1, "filename": "ray-1.8.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2e0f204d6d785b6dc890e2cc0aae1818", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 54667091, "upload_time": "2021-11-02T18:23:28", "upload_time_iso_8601": "2021-11-02T18:23:28.693991Z", "url": "https://files.pythonhosted.org/packages/9c/0f/7276f00654911e553df73cafde37cb67451688ce20aaba0ebde9c751a4ef/ray-1.8.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "118e49220299368a006c1852afea2164", "sha256": "77f8d1e51ae9802a98abe0b66273dd2dbd7612f3c17081d6100aaf35baab9aa7" }, "downloads": -1, "filename": "ray-1.8.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "118e49220299368a006c1852afea2164", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 18421853, "upload_time": "2021-11-02T18:23:34", "upload_time_iso_8601": "2021-11-02T18:23:34.067999Z", "url": "https://files.pythonhosted.org/packages/f2/ce/824bc152dd1b2b1b2277b4526a343b24358fb8caaf6e2c237df3f1efd200/ray-1.8.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d8d2574a666e6e68bc98edc288882c7", "sha256": "c73353eb4e6f9083be3320f705891bf693f8e0aef82021cb9f9d221f69b4de5d" }, "downloads": -1, "filename": "ray-1.8.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "3d8d2574a666e6e68bc98edc288882c7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 55736801, "upload_time": "2021-11-02T18:23:39", "upload_time_iso_8601": "2021-11-02T18:23:39.171321Z", "url": "https://files.pythonhosted.org/packages/0b/46/7985171065c2912404cff56872833d8bfbe7dfa66782e0804405e840fe92/ray-1.8.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c8647d933b22aeb198f27a492e1be56", "sha256": "53f4c620c770a99ca709afe5973f13eb97f22dc8db1871ffedfe29364b9f4cca" }, "downloads": -1, "filename": "ray-1.8.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "9c8647d933b22aeb198f27a492e1be56", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 24210809, "upload_time": "2021-11-02T18:23:44", "upload_time_iso_8601": "2021-11-02T18:23:44.824660Z", "url": "https://files.pythonhosted.org/packages/a0/c6/91c399f49ffdf1ba681dfc6f9dfa73231e5e616e59482f2e32f1a549693d/ray-1.8.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4af14e47f75d53a3947e226bccf37f26", "sha256": "bfbbda17a7753d3a16cc530744d037f28ef18561f173bed923f05590267a79b4" }, "downloads": -1, "filename": "ray-1.8.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4af14e47f75d53a3947e226bccf37f26", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 54404507, "upload_time": "2021-11-02T18:23:49", "upload_time_iso_8601": "2021-11-02T18:23:49.850180Z", "url": "https://files.pythonhosted.org/packages/31/00/72a1b0ac45b6ab82581ee658d7a05b44ce8a8eebe21148a82da038cfe4d1/ray-1.8.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13f9bb99aa8b07e767f486869c84450b", "sha256": "05b52aeaf100d840bd664ef28db3f485dbe7b4b208da0cc8ee3e060e2fc2d1ba" }, "downloads": -1, "filename": "ray-1.8.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "13f9bb99aa8b07e767f486869c84450b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 18319112, "upload_time": "2021-11-02T18:23:54", "upload_time_iso_8601": "2021-11-02T18:23:54.522958Z", "url": "https://files.pythonhosted.org/packages/36/f9/97aee1deb5841319fd8c5303f7721ab3a98db2d3936bc258cfbd3694220f/ray-1.8.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d84b64e290b22acdcafaf19c2390d59", "sha256": "e4c59d04c617ad33372526c03b503b93dbb1fa614544c41214ecbe8750b11caa" }, "downloads": -1, "filename": "ray-1.8.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "9d84b64e290b22acdcafaf19c2390d59", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 55740485, "upload_time": "2021-11-02T18:24:00", "upload_time_iso_8601": "2021-11-02T18:24:00.824043Z", "url": "https://files.pythonhosted.org/packages/88/0f/dfc0cf2089e55eec36e4019e9fcc1606d948ea63f6ee0ea29e005848da0f/ray-1.8.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "561f337fd7133bb35ab9930e4e5e4005", "sha256": "d26fbbd86bada6031434ebdc33da9b9ee490d35b99e0e5297e21f424e56e4ea9" }, "downloads": -1, "filename": "ray-1.8.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "561f337fd7133bb35ab9930e4e5e4005", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 24211737, "upload_time": "2021-11-02T18:24:05", "upload_time_iso_8601": "2021-11-02T18:24:05.836071Z", "url": "https://files.pythonhosted.org/packages/18/17/e4dd459507cca91d29d0676b4a5c4d44a4a08a5ae1cd5ea1136648ca5f65/ray-1.8.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eff314b40fbe552cb7b6dab69e00a228", "sha256": "9e4ccb5e4ba925d41d73e3af304c4ae19b44967d4f18f6e16655b43123a2ff5e" }, "downloads": -1, "filename": "ray-1.8.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "eff314b40fbe552cb7b6dab69e00a228", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 54376721, "upload_time": "2021-11-02T18:24:10", "upload_time_iso_8601": "2021-11-02T18:24:10.961623Z", "url": "https://files.pythonhosted.org/packages/d1/fa/2b3079a0286cf25d7ae486cb28773cc36cc7daa45e12d139f4bcaf888762/ray-1.8.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac67c6643ab0046078a16136f34c4150", "sha256": "8bd9a2beb0594555d74907d2a390a050d4dd08158409ef0d64c1bf9fceeb149c" }, "downloads": -1, "filename": "ray-1.8.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "ac67c6643ab0046078a16136f34c4150", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 18321083, "upload_time": "2021-11-02T18:24:15", "upload_time_iso_8601": "2021-11-02T18:24:15.928529Z", "url": "https://files.pythonhosted.org/packages/ab/ec/b2a9735f9a5b84770929d80ba335bfe1d4f87f25040e1dc4cf8f05f08226/ray-1.8.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "71f08909cd2292fda115c982008294a7", "sha256": "19682c413ec9614d352c70776614e77c47a303fa687d85a4b874d0644411b005" }, "downloads": -1, "filename": "ray-1.9.0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "71f08909cd2292fda115c982008294a7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 58911565, "upload_time": "2021-12-03T03:29:57", "upload_time_iso_8601": "2021-12-03T03:29:57.140478Z", "url": "https://files.pythonhosted.org/packages/bf/5c/655404817c6f6352226f9946a4f4ae05467c47ea7dabcc85657d6a2cdcbb/ray-1.9.0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bc03260e2e31d31ed2c62e42633fa92", "sha256": "68e9e238d18b16195f62030ed38c5696e1d0c0669333c7919d7191210886b7b3" }, "downloads": -1, "filename": "ray-1.9.0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3bc03260e2e31d31ed2c62e42633fa92", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 57617475, "upload_time": "2021-12-03T03:30:04", "upload_time_iso_8601": "2021-12-03T03:30:04.121495Z", "url": "https://files.pythonhosted.org/packages/25/75/6df2c96abc14f58b585c878ca0ad26e7f1be4a3b96f5a3e71766ac22a652/ray-1.9.0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab5b191b5325754ee762053de90d7b6f", "sha256": "0b809750f4eb6cd77465e3e6b4294571ef90c0566b57394dde3e6be96ab6f8fa" }, "downloads": -1, "filename": "ray-1.9.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ab5b191b5325754ee762053de90d7b6f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21366682, "upload_time": "2021-12-03T03:30:09", "upload_time_iso_8601": "2021-12-03T03:30:09.100708Z", "url": "https://files.pythonhosted.org/packages/b3/28/17cfb2985236ebe130e28c2389178ccc959118d39e71b7843c198b2732d5/ray-1.9.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95223980719937233a33749795e27c97", "sha256": "a2004fae99a2f9a4475f0f249145c1cb1532cc9ef10d127c445094d22dfa8b81" }, "downloads": -1, "filename": "ray-1.9.0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "95223980719937233a33749795e27c97", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 58876725, "upload_time": "2021-12-03T03:30:15", "upload_time_iso_8601": "2021-12-03T03:30:15.695657Z", "url": "https://files.pythonhosted.org/packages/20/6d/94b739583c0ed31b769df7c7552912410f042491aa7f7f98358a4230883d/ray-1.9.0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24df07574fd3b922bbb9f3cf8224624d", "sha256": "c975e9ca7cae07acf572b2de7336a8f983d64c0e48b9abd66da36a7fad9f3032" }, "downloads": -1, "filename": "ray-1.9.0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "24df07574fd3b922bbb9f3cf8224624d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 57620600, "upload_time": "2021-12-03T03:30:22", "upload_time_iso_8601": "2021-12-03T03:30:22.779293Z", "url": "https://files.pythonhosted.org/packages/60/3f/d9201a46027ba314b335d16e3f449d794dbad16acf5aa6105839e0dce598/ray-1.9.0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a92650fc64c27c84dcd94ba95588109e", "sha256": "ae3a9690d76d2a20f31b4b41e29767d94eab66fdb1c0091d64083d3e628a431a" }, "downloads": -1, "filename": "ray-1.9.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a92650fc64c27c84dcd94ba95588109e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22588751, "upload_time": "2021-12-03T03:30:28", "upload_time_iso_8601": "2021-12-03T03:30:28.385054Z", "url": "https://files.pythonhosted.org/packages/08/5f/b5ca748f3908f897cde89136ff062c444ab0f018f81f83f3dc58b1d04396/ray-1.9.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "267aaa9e8c9ae749c3052b4996a6dcf1", "sha256": "5f34e0e6d105a9e95bac663c8c5897bf87e65b1d6ea47d99ef534051eb70b0d6" }, "downloads": -1, "filename": "ray-1.9.0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "267aaa9e8c9ae749c3052b4996a6dcf1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 58705236, "upload_time": "2021-12-03T03:30:34", "upload_time_iso_8601": "2021-12-03T03:30:34.199346Z", "url": "https://files.pythonhosted.org/packages/55/78/a5acba370b8fef9cb9b902da1b42fddc2931235b0b7600ce9d22fc2bb45c/ray-1.9.0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f4d6292a1a89a44e6903c16b23de64f", "sha256": "0e40aefcd9daa12cd8464639d65869c26a883199bdee1172fa8f758b28bc234b" }, "downloads": -1, "filename": "ray-1.9.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "2f4d6292a1a89a44e6903c16b23de64f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 26643997, "upload_time": "2021-12-03T03:30:39", "upload_time_iso_8601": "2021-12-03T03:30:39.383016Z", "url": "https://files.pythonhosted.org/packages/44/ec/90b2f1cbf4de18989e39b8a9becf5245721a02c9bc9f931f09b9e8c0f858/ray-1.9.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97f8d40d0a625ab338adc6cea3dba267", "sha256": "d093d88076a4c06076f0a9d60699d387591870e0781eabc6911a9cda66d3c8b2" }, "downloads": -1, "filename": "ray-1.9.0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "97f8d40d0a625ab338adc6cea3dba267", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 57353237, "upload_time": "2021-12-03T03:30:45", "upload_time_iso_8601": "2021-12-03T03:30:45.217741Z", "url": "https://files.pythonhosted.org/packages/d9/09/6a09d3f20edeab1b54e5ecee5b0b8f17e8fea5f8c0f4c8900c71590d3db8/ray-1.9.0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff49ca80f66f3331fb9607177031d36f", "sha256": "97f7923251566e1f9fb26b0f2247372d712d326df12e8b1e88af5e5efbc2bd09" }, "downloads": -1, "filename": "ray-1.9.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ff49ca80f66f3331fb9607177031d36f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 21262271, "upload_time": "2021-12-03T03:30:49", "upload_time_iso_8601": "2021-12-03T03:30:49.860887Z", "url": "https://files.pythonhosted.org/packages/fd/f3/8fd46609756b094451f39e2ffd144c50761fa0af1d106a1b6b06ef819a23/ray-1.9.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "010decfe67800dcf41dc1a4951edf785", "sha256": "ea8812cfc605f8f94ce58e367af76f4ceb573f4a6f148b2566e5327c63f37213" }, "downloads": -1, "filename": "ray-1.9.0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "010decfe67800dcf41dc1a4951edf785", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 58708293, "upload_time": "2021-12-03T03:30:55", "upload_time_iso_8601": "2021-12-03T03:30:55.951013Z", "url": "https://files.pythonhosted.org/packages/3b/1d/4f74b4e981280c7ea269b1e3d03df57537cb0755e1ced13050df02337bed/ray-1.9.0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc1ec98f0ddc62b44b17cd57d2eb6942", "sha256": "2874d802f0a2d88e434c1e24c2549b4c4d3cca0177f694aecb7f89c4922d4a5c" }, "downloads": -1, "filename": "ray-1.9.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "dc1ec98f0ddc62b44b17cd57d2eb6942", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 26645803, "upload_time": "2021-12-03T03:31:01", "upload_time_iso_8601": "2021-12-03T03:31:01.139434Z", "url": "https://files.pythonhosted.org/packages/9f/5c/59d605cdbd82b44fe502c623c050030326e0de8cbe20df9b78bbe6711228/ray-1.9.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "480cabe42b867a2117b451c68164ce93", "sha256": "dc20a9128053aeaa5bcf30cef58dd8367d57ace5e48327bc771d178f1b46ef3d" }, "downloads": -1, "filename": "ray-1.9.0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "480cabe42b867a2117b451c68164ce93", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 57326393, "upload_time": "2021-12-03T03:31:07", "upload_time_iso_8601": "2021-12-03T03:31:07.067698Z", "url": "https://files.pythonhosted.org/packages/4d/67/31a9d5db2bf557968e9f796d49a40eecb44c09d9675380a7c6138619a4f2/ray-1.9.0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bcf867476379de6d0417e1b49019e3d", "sha256": "3f93deb83f94ebf4e99fc6169f34973587d22baaebc3b1054572bc770820d60c" }, "downloads": -1, "filename": "ray-1.9.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "3bcf867476379de6d0417e1b49019e3d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 21264598, "upload_time": "2021-12-03T03:31:11", "upload_time_iso_8601": "2021-12-03T03:31:11.975643Z", "url": "https://files.pythonhosted.org/packages/99/a5/462488643cab12aceda6277d7e6a60a6074f1c6b1c50bc5a196c0a5373c0/ray-1.9.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.9.0rc1": [ { "comment_text": "", "digests": { "md5": "dde64c834936e08820af4fe48f07e11c", "sha256": "3d1335a5a103123d83e06ace5c0288d30b045a6085165ff8d6fe3ed78f84b8e0" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "dde64c834936e08820af4fe48f07e11c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 58919797, "upload_time": "2021-11-20T22:34:40", "upload_time_iso_8601": "2021-11-20T22:34:40.597027Z", "url": "https://files.pythonhosted.org/packages/5e/78/0fc6f97393fd860bddd02cd61fc9330216964e8ef2a0b8381d2e3d3ff4d3/ray-1.9.0rc1-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f9ed8875b5acab099a191b899c55c6f", "sha256": "6e1c5d8d8c5559955ee89ce8874301c762834035962f87401d9bfa61770c42a4" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2f9ed8875b5acab099a191b899c55c6f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 57625693, "upload_time": "2021-11-20T20:47:18", "upload_time_iso_8601": "2021-11-20T20:47:18.629247Z", "url": "https://files.pythonhosted.org/packages/a9/4d/c25d3791676a0ed7dec88ff2bc055f1c043a8e6b5834b7c6b015ccc44679/ray-1.9.0rc1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d4308e7a1fab93e03afe0358c900e44", "sha256": "d8e9c1f3c0021217a6f1ae1c2d5dd404dee2b3d826381d21dfd920a7bcf2cc57" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8d4308e7a1fab93e03afe0358c900e44", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21377085, "upload_time": "2021-11-20T20:47:52", "upload_time_iso_8601": "2021-11-20T20:47:52.321275Z", "url": "https://files.pythonhosted.org/packages/c0/3f/9f183a81696b9399838596e3c757ea69fe518d12c3bd784ad442f44e6999/ray-1.9.0rc1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13a699167494c9fd8fc5f3177cce95cf", "sha256": "fc6d5ce90dca38f32cbddeb1a4e98a33f0d83c29e2831a94995dce39fb54dfe3" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "13a699167494c9fd8fc5f3177cce95cf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 58891530, "upload_time": "2021-11-20T22:34:54", "upload_time_iso_8601": "2021-11-20T22:34:54.940956Z", "url": "https://files.pythonhosted.org/packages/36/de/707f080fb7b4ab1d40a347ff5f1d6dab1aad14c3bbb498a8a7a5b65a86bc/ray-1.9.0rc1-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02dbf7f55fa637cd6b314f9a988152ea", "sha256": "abe555a4ef55f55e0b0cb36eb3ec8c917147388292ba8fda7b5d948a8cc533cd" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "02dbf7f55fa637cd6b314f9a988152ea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 57628903, "upload_time": "2021-11-20T20:49:12", "upload_time_iso_8601": "2021-11-20T20:49:12.582124Z", "url": "https://files.pythonhosted.org/packages/94/47/3a724b6dafeb370c31e89bbd5ebcfa3ceb41139b2bb3b3816aea2f715c51/ray-1.9.0rc1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "204306d36c1ee7c9daa8dc8b21f4272c", "sha256": "5417343387cea70baeb44d1e6636f2280918982e01c8324f86613864b041ec73" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "204306d36c1ee7c9daa8dc8b21f4272c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22602836, "upload_time": "2021-11-20T20:49:39", "upload_time_iso_8601": "2021-11-20T20:49:39.776899Z", "url": "https://files.pythonhosted.org/packages/d9/d5/a4633362f4f151bda77507941c8475a355f7694e68aabc872b896cd67915/ray-1.9.0rc1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a882320286a966d3c3e267ae084355a2", "sha256": "83e819a6aa321f2af84bcb11048e345d98c17e356a88ed1bec2cfde6a3b6388f" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "a882320286a966d3c3e267ae084355a2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 58719995, "upload_time": "2021-11-20T22:35:09", "upload_time_iso_8601": "2021-11-20T22:35:09.958729Z", "url": "https://files.pythonhosted.org/packages/4b/59/375942741c6cff2d79fa2198b8759e1f8a5a9e1fc85f98c4aeb0ded7a9d1/ray-1.9.0rc1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa8e633d84d6a5f45ed1319be72ee87e", "sha256": "cc5e764d95c4f24bf6da4478327f6f7ef9bdec5b0a9bec9d481aec5d38fe0cd5" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "aa8e633d84d6a5f45ed1319be72ee87e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 26654661, "upload_time": "2021-11-22T03:41:45", "upload_time_iso_8601": "2021-11-22T03:41:45.886862Z", "url": "https://files.pythonhosted.org/packages/30/56/903e50b31ef23cc1c406e5070d29384acbf2b5bae4596cffb3e45314c103/ray-1.9.0rc1-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8306f5157e1c90db49719416737a7895", "sha256": "a71502f8bbb39ea292f868f29fecfbe340c3ecb2269e80d07d6a76900e480636" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "8306f5157e1c90db49719416737a7895", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 57361428, "upload_time": "2021-11-20T20:51:17", "upload_time_iso_8601": "2021-11-20T20:51:17.691643Z", "url": "https://files.pythonhosted.org/packages/3c/10/cc1bbc67c4172e863c1385e0ab4ff2a68a5123dda5dae3af892fbe980a08/ray-1.9.0rc1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eab05eb3849cdb31d31c8f1c30fa061f", "sha256": "a67a97164766811631ce1e881f0e967b7f7572e07bbdba71973bf2a5b27864af" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "eab05eb3849cdb31d31c8f1c30fa061f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 21272597, "upload_time": "2021-11-20T20:52:00", "upload_time_iso_8601": "2021-11-20T20:52:00.866847Z", "url": "https://files.pythonhosted.org/packages/3d/f0/9ed0adc8f7613f0fdead8efd5bdd3a1b67097ebe0c83aa0e56ebc4faad9f/ray-1.9.0rc1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d597a4f8479946b216ab0e1fef57ccb", "sha256": "9061fbeb8537806c1b0e0cb1549fdd4c14cf2c5fdef040b058e53baab88bd7dd" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "1d597a4f8479946b216ab0e1fef57ccb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 58723007, "upload_time": "2021-11-20T22:35:23", "upload_time_iso_8601": "2021-11-20T22:35:23.801083Z", "url": "https://files.pythonhosted.org/packages/21/85/773ff13ba39696a58cf4dc279b6e3b396d478f437fdcb66bf70b877d97d8/ray-1.9.0rc1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "401ac69da40497aff54c3bdeea114452", "sha256": "30b8e4ea6857205c48f711254702329854b81fd9bb16f558d27b60bfc03ba433" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "401ac69da40497aff54c3bdeea114452", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 26656385, "upload_time": "2021-11-22T03:42:25", "upload_time_iso_8601": "2021-11-22T03:42:25.778659Z", "url": "https://files.pythonhosted.org/packages/97/0b/a30ad7478f3c3534bd3b9c7588d9e3b875567ced372ea665d6571f13d4e0/ray-1.9.0rc1-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5369201c4bec44844f6fe84d3178b8dc", "sha256": "ac6368051e45a305637d5f13a5bce9545e6b0f60d62b80ba8719d75cb9088733" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5369201c4bec44844f6fe84d3178b8dc", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 57334515, "upload_time": "2021-11-20T20:54:07", "upload_time_iso_8601": "2021-11-20T20:54:07.386334Z", "url": "https://files.pythonhosted.org/packages/5d/55/b55a4d97d2a7c60f2eb3976ccceb29f5369e3b1a1531e21c024eb17dc241/ray-1.9.0rc1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b48c0127ab97b9ba9a819d1989388754", "sha256": "0dec588dce626ded35c607db56a17bb5b0f0ee05b4af44d1ef69a41c994c157b" }, "downloads": -1, "filename": "ray-1.9.0rc1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "b48c0127ab97b9ba9a819d1989388754", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 21275033, "upload_time": "2021-11-20T20:55:32", "upload_time_iso_8601": "2021-11-20T20:55:32.350360Z", "url": "https://files.pythonhosted.org/packages/06/63/e9988c69eca8dbfdf35c75fb09b646957208005c9c7bb9aa1c0bd224878d/ray-1.9.0rc1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.9.0rc2": [ { "comment_text": "", "digests": { "md5": "f9a5902371c1f0561783fcb007c3135a", "sha256": "25e7242f040a70c870b7f19b5f6f4e4672a95a0d443ffd59d92eed79f19012ea" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "f9a5902371c1f0561783fcb007c3135a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 58919089, "upload_time": "2021-11-25T06:50:56", "upload_time_iso_8601": "2021-11-25T06:50:56.576514Z", "url": "https://files.pythonhosted.org/packages/b7/21/f840e7a227d542d7056741b586c692aceda6fae73485f2b2e4521adc83a6/ray-1.9.0rc2-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4872496ba360a23ec847e1ed3c23f38a", "sha256": "881d3ae494e1dc89986b1642f34d6484861c04da112ca8a125b080659b24b370" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4872496ba360a23ec847e1ed3c23f38a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 57624746, "upload_time": "2021-11-25T06:51:03", "upload_time_iso_8601": "2021-11-25T06:51:03.688037Z", "url": "https://files.pythonhosted.org/packages/42/a7/d550c9222cefbfcc1de3926ab8a59cad7b6752f3772591e0bbc753302290/ray-1.9.0rc2-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a557ca57207aec9b89e116eff52398f0", "sha256": "21e85693bc7bce21b3fe08129d2c5e76a847acbdb6d696d1cd3f68945b015546" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a557ca57207aec9b89e116eff52398f0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21375561, "upload_time": "2021-11-25T06:51:09", "upload_time_iso_8601": "2021-11-25T06:51:09.308887Z", "url": "https://files.pythonhosted.org/packages/15/d0/af7a6a617e9180690d529302ddaf61c5a7f5cb673222c1d7a6399721f5cd/ray-1.9.0rc2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "882432a9e19a6ea5be8574532c58b60f", "sha256": "3da8028e66d48416b44b91f61e895ceb332535e7aa738c100608a5238b83734a" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "882432a9e19a6ea5be8574532c58b60f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 58890761, "upload_time": "2021-11-25T06:51:15", "upload_time_iso_8601": "2021-11-25T06:51:15.757487Z", "url": "https://files.pythonhosted.org/packages/95/9c/5f0a50f1f736cf9d5aee42362d94bbf3909df3c1bfe2ecd61ef4b6359391/ray-1.9.0rc2-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15b7d720b9b44d04195fcc4cd0856137", "sha256": "ef2021b5c92a8c77efeac656f85fd91955eb7499b79d17a4be0b8d49370df604" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "15b7d720b9b44d04195fcc4cd0856137", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 57627861, "upload_time": "2021-11-25T06:51:22", "upload_time_iso_8601": "2021-11-25T06:51:22.932812Z", "url": "https://files.pythonhosted.org/packages/ba/b3/b764b39df9975009af65c4231c45ae95b2c047cdba44d1492f88b8d8e921/ray-1.9.0rc2-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3416ccab5f3e0f5477397086ab95ec06", "sha256": "a2480499ea7e2eedc91ed4d27c533aa9668da7a7702e088f731bf8f158b359eb" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3416ccab5f3e0f5477397086ab95ec06", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 22600695, "upload_time": "2021-11-25T06:51:28", "upload_time_iso_8601": "2021-11-25T06:51:28.170131Z", "url": "https://files.pythonhosted.org/packages/f6/af/87e7e4bd97565ea22adfdfad840a288834c87dd0dbedffa8f6c6b8d5f720/ray-1.9.0rc2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "576ce0cf2666d306d04f87b396234fe2", "sha256": "392f70d0a66f7ae3c5b509a2c7f4521c46aa09eeec3c6dfd7fdd7c4175ce4b6f" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "576ce0cf2666d306d04f87b396234fe2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 58719266, "upload_time": "2021-11-25T06:51:33", "upload_time_iso_8601": "2021-11-25T06:51:33.761400Z", "url": "https://files.pythonhosted.org/packages/51/1c/ab09515df1432bbef15c7e141d68fb2670aae199f52c0af4e5b7618bfcd7/ray-1.9.0rc2-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14b6bb68043f12dcb845756fe7ba3d7f", "sha256": "2192e660cc3b1e37af4690d4f869277e19fabfa57e7167747fa56c2c97b3b66e" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "14b6bb68043f12dcb845756fe7ba3d7f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 26653082, "upload_time": "2021-11-25T17:19:54", "upload_time_iso_8601": "2021-11-25T17:19:54.925010Z", "url": "https://files.pythonhosted.org/packages/b7/63/56216aa74f504d848a9fb51eb234f7b1ebd00e962d5637235eeab5cb6078/ray-1.9.0rc2-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60557c1b16800e074e5d4d4c639067aa", "sha256": "5b301933d7ee6494244b1b72a5eb23f79bcd818cc5d769bf34cb5971cb3398a9" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "60557c1b16800e074e5d4d4c639067aa", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 57360388, "upload_time": "2021-11-25T06:51:40", "upload_time_iso_8601": "2021-11-25T06:51:40.510920Z", "url": "https://files.pythonhosted.org/packages/e9/e0/ff9c7024372a5ee78dd434cf9a1e7d9d34e30d49138de58ccca7c989bb5e/ray-1.9.0rc2-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c60f8e47874dc3cbe9484acd25806eec", "sha256": "127e6702485f06132ecc99b93f729b78001309d32db5ed984e8f843252189a6d" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "c60f8e47874dc3cbe9484acd25806eec", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 21271053, "upload_time": "2021-11-25T06:51:45", "upload_time_iso_8601": "2021-11-25T06:51:45.072296Z", "url": "https://files.pythonhosted.org/packages/10/8f/ee430ddaab035508a26e72c937d100f1a2a4287e013732d22f94b1134534/ray-1.9.0rc2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd16a2fb07a55f57b854a8f39d5d097f", "sha256": "92c6aa6346296f8ad7e81799263cab09e6e8e5f63c7eb289aa6016506b93e4f3" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "dd16a2fb07a55f57b854a8f39d5d097f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 58722268, "upload_time": "2021-11-25T06:51:51", "upload_time_iso_8601": "2021-11-25T06:51:51.500296Z", "url": "https://files.pythonhosted.org/packages/cc/37/13401914906f37cd62dd0f9e0b07ad42a7cacfc41bd109c469307d2d9cc3/ray-1.9.0rc2-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28fcf1db7876fa71a2d8c4fb4a0c5c7e", "sha256": "bc3881c628d5eb3db7ec9ca3eda75e5ad29d12e6093a5776c456bd422c8da626" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "28fcf1db7876fa71a2d8c4fb4a0c5c7e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 26654764, "upload_time": "2021-11-25T17:21:42", "upload_time_iso_8601": "2021-11-25T17:21:42.898713Z", "url": "https://files.pythonhosted.org/packages/a5/90/ee4b4dfad4ab45fc9118c2ed40495042201c2f4447c5bc305be5904974c8/ray-1.9.0rc2-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46abc7abe3ccf2d5ed8eff88aafa5b86", "sha256": "8eb83c2f4cf170625247c3ad89a1997ace66b954433b6ac2527113bcf88fb782" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "46abc7abe3ccf2d5ed8eff88aafa5b86", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 57333505, "upload_time": "2021-11-25T06:51:58", "upload_time_iso_8601": "2021-11-25T06:51:58.919503Z", "url": "https://files.pythonhosted.org/packages/d0/8b/459a953a879cb585945e2269966dcc31ccf292899d81409edb6d8d4a67f6/ray-1.9.0rc2-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04980aa25e9e28b1058728b8487e9eab", "sha256": "5813c02d419cff5b4b1acaa31dfa021cc820c9b0afd298bb80971c775f22bbae" }, "downloads": -1, "filename": "ray-1.9.0rc2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "04980aa25e9e28b1058728b8487e9eab", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 21273531, "upload_time": "2021-11-25T06:52:04", "upload_time_iso_8601": "2021-11-25T06:52:04.123304Z", "url": "https://files.pythonhosted.org/packages/dd/49/3b6f4fe53e0abe19168253657d38028d5e5e3ce9b15cd799b0dbe9287626/ray-1.9.0rc2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "782e159548de8b9128adaba232049a99", "sha256": "bf834fc806e21ef9e959020e98a83bc75c7c0e84555278fae525e4949a628b01" }, "downloads": -1, "filename": "ray-1.9.1-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "782e159548de8b9128adaba232049a99", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 58934424, "upload_time": "2021-12-22T00:56:20", "upload_time_iso_8601": "2021-12-22T00:56:20.472834Z", "url": "https://files.pythonhosted.org/packages/48/ee/002b4b86b66f1590470c95f5d6a0b7ca1a9b65a499e1239cedcaea786e43/ray-1.9.1-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfd08cdcbd1ca98bb0910e0b2ce4f3d2", "sha256": "e5334780d2eb07e26c09b29716409e7e749d552234944b5dd708f81f50fbc65a" }, "downloads": -1, "filename": "ray-1.9.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "dfd08cdcbd1ca98bb0910e0b2ce4f3d2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 57641329, "upload_time": "2021-12-22T00:56:27", "upload_time_iso_8601": "2021-12-22T00:56:27.899979Z", "url": "https://files.pythonhosted.org/packages/2d/b2/d671cc4ac308d387f97bd81577d75bbac80b4541e97c2f9f2b8b30ab6552/ray-1.9.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99cc5ff9c6fe6a1acd2c10a282eb4314", "sha256": "ac0a0a849f3988c3f4c77df6fe860bf3c2c9b2d147e1464400204c7ce1894bcd" }, "downloads": -1, "filename": "ray-1.9.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "99cc5ff9c6fe6a1acd2c10a282eb4314", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21365883, "upload_time": "2021-12-22T00:56:32", "upload_time_iso_8601": "2021-12-22T00:56:32.610096Z", "url": "https://files.pythonhosted.org/packages/e6/3b/78e0c36ed6cc3a888701028afadec2a6d850ef150f858547e7d4129893e7/ray-1.9.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e3d6ae6bded3d8009dcf167c8d28e82", "sha256": "c7ad67b6f0603e08cc0e08def134f4249441044d6ce61edd6b4940d8aeb88eeb" }, "downloads": -1, "filename": "ray-1.9.1-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "6e3d6ae6bded3d8009dcf167c8d28e82", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 58899521, "upload_time": "2021-12-22T00:56:38", "upload_time_iso_8601": "2021-12-22T00:56:38.660975Z", "url": "https://files.pythonhosted.org/packages/71/e6/19750f76bdcbbc9fc31ae1c1420e83c2b3d2b2dbada276ec8511ac079e46/ray-1.9.1-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0baf487cf983e727f63ca02a3108da79", "sha256": "57f31b2bea67dd61c4f4e930bf9e842a88b5c47d47d0559dc6af23684b22268e" }, "downloads": -1, "filename": "ray-1.9.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0baf487cf983e727f63ca02a3108da79", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 57644480, "upload_time": "2021-12-22T00:56:45", "upload_time_iso_8601": "2021-12-22T00:56:45.683524Z", "url": "https://files.pythonhosted.org/packages/67/2e/e83b804c135c54075157c988bd926a99861a9124323b0639189adeb6eefa/ray-1.9.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b0c460da17c4d5eea50db2f34d75282", "sha256": "711c95523ebd9ffb1091e8d13017388b2867ff0398cac336af03f2a2a09c3d79" }, "downloads": -1, "filename": "ray-1.9.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3b0c460da17c4d5eea50db2f34d75282", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21367113, "upload_time": "2021-12-22T00:56:50", "upload_time_iso_8601": "2021-12-22T00:56:50.497446Z", "url": "https://files.pythonhosted.org/packages/15/82/f1035cdd7a329520991c1d92adf4a5e7c19a6f2423c7ed97de947bb8c05c/ray-1.9.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d070ed6f865c1f62558fd3de509df0fb", "sha256": "b5cb5219968ccdddb2de409d17f5cded7aa25a0d44dfb55c3445b0720f029a96" }, "downloads": -1, "filename": "ray-1.9.1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "d070ed6f865c1f62558fd3de509df0fb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 58728088, "upload_time": "2021-12-22T00:56:56", "upload_time_iso_8601": "2021-12-22T00:56:56.914121Z", "url": "https://files.pythonhosted.org/packages/e2/c8/b62be2d02e7421bfb3dc8d3810814af6dc179e838ddb314a888a85566993/ray-1.9.1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a17148fe69370fb65c09172c57128294", "sha256": "593069c1d54ef131cd4968181729c84feaab19c0dd87bbc851431360e4910328" }, "downloads": -1, "filename": "ray-1.9.1-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "a17148fe69370fb65c09172c57128294", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 26544438, "upload_time": "2021-12-22T00:57:02", "upload_time_iso_8601": "2021-12-22T00:57:02.952909Z", "url": "https://files.pythonhosted.org/packages/55/25/2c923c156dbdf8a9bedca7ffd5cb5afb2615a869526bf66cf30984b85274/ray-1.9.1-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29132230e0a43d8534048f81a25b8f69", "sha256": "2e208f8aa8085cdbfebb386eda0c9b53c28fbbd52a49d46693348c8bc4862563" }, "downloads": -1, "filename": "ray-1.9.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "29132230e0a43d8534048f81a25b8f69", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 57377053, "upload_time": "2021-12-22T00:57:09", "upload_time_iso_8601": "2021-12-22T00:57:09.420238Z", "url": "https://files.pythonhosted.org/packages/52/83/b526239dcb97a986a2388d0c99d637f9f10a7c18a421149792f980f412ed/ray-1.9.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44ebf40cea65e418143ff7cf55f96088", "sha256": "61d328de77ac21d4e9a7577b4aad1870b09e6314f5e3182f81586f74ca09091d" }, "downloads": -1, "filename": "ray-1.9.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "44ebf40cea65e418143ff7cf55f96088", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 21261472, "upload_time": "2021-12-22T00:57:13", "upload_time_iso_8601": "2021-12-22T00:57:13.732826Z", "url": "https://files.pythonhosted.org/packages/aa/01/43380aad4dd60599dd2e6aaf0637903a6a04dcb67fada4f84c2e8721ed6f/ray-1.9.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fb6a26f3e8f0f97ded11aef81df8e8d", "sha256": "87903f9cd2b199019e4823cead31ce5032a1fad6c79ce12a8a1d11dccc5ceb39" }, "downloads": -1, "filename": "ray-1.9.1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "1fb6a26f3e8f0f97ded11aef81df8e8d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 58731056, "upload_time": "2021-12-22T00:57:19", "upload_time_iso_8601": "2021-12-22T00:57:19.037055Z", "url": "https://files.pythonhosted.org/packages/1a/9d/14d7fe9bf7872af9cfbe2c3e1709084fcaa8ecd867a34f73c821565f859e/ray-1.9.1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08f7e2abe84f202c67c62a2208e81806", "sha256": "95ab43b3c4f568978069876f9103a91fc15a895545c8f00e7b5b762faf2d7a61" }, "downloads": -1, "filename": "ray-1.9.1-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "08f7e2abe84f202c67c62a2208e81806", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 26546804, "upload_time": "2021-12-22T00:57:23", "upload_time_iso_8601": "2021-12-22T00:57:23.599409Z", "url": "https://files.pythonhosted.org/packages/8f/b5/9da7879ade920e34a070fb19b1f1f09fbd81cc61279fb869a2db2f8fade6/ray-1.9.1-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3a60eabb3fed112ae0287e961b3d313", "sha256": "86ecd072a832663838a5002589478dfb84afa3a81136f6ddcd21a3f1a37f424e" }, "downloads": -1, "filename": "ray-1.9.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e3a60eabb3fed112ae0287e961b3d313", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 57350231, "upload_time": "2021-12-22T00:57:29", "upload_time_iso_8601": "2021-12-22T00:57:29.804072Z", "url": "https://files.pythonhosted.org/packages/9d/c5/bc1e8b66419291e608a388542a8a664a9f1cdca9ef340c34a5e67890409c/ray-1.9.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68fbd01a1716d49ae8fa3ae7752a046c", "sha256": "e1bf6e79c476677675ffb6cb5512df3d993f4c209bcf7a6607c8c10b8d8ff2ab" }, "downloads": -1, "filename": "ray-1.9.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "68fbd01a1716d49ae8fa3ae7752a046c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 21264045, "upload_time": "2021-12-22T00:57:33", "upload_time_iso_8601": "2021-12-22T00:57:33.811818Z", "url": "https://files.pythonhosted.org/packages/f4/8b/e5ee9ff0a65282b5a285e3351a9c23c8b1c9feb8f03c321965cc63ea914c/ray-1.9.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.9.1rc0": [ { "comment_text": "", "digests": { "md5": "aa1b401601707ed9f86ff44522f92081", "sha256": "d6317697edc1e83781ea5c5635e5d982eef06f9d7244795c93935143f00d7fa3" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "aa1b401601707ed9f86ff44522f92081", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 58945227, "upload_time": "2021-12-16T16:09:35", "upload_time_iso_8601": "2021-12-16T16:09:35.454040Z", "url": "https://files.pythonhosted.org/packages/eb/ad/d5c580973d1c6d8dee8643a37eec3cbb5bb15b36ed0154277599f31ff7e2/ray-1.9.1rc0-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c401f83268c183c5c4d92d997c512da7", "sha256": "804f417733dac3f89f4de57890ebf8994ffe9b04fbd0ec1d765de050d9d9fe39" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c401f83268c183c5c4d92d997c512da7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 57651632, "upload_time": "2021-12-16T16:10:14", "upload_time_iso_8601": "2021-12-16T16:10:14.451042Z", "url": "https://files.pythonhosted.org/packages/f1/b9/c2ad33b6fdbb3c7a381bdc6003a1231c23d2d27aa4b850c1e8fcfc346aae/ray-1.9.1rc0-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88594312d31910a3bb580c2387711bcc", "sha256": "ddcdf67fb14d6924be5aee470c6a0e3b741c335322709be1de7bf7a38b26cb52" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "88594312d31910a3bb580c2387711bcc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21377538, "upload_time": "2021-12-16T16:10:29", "upload_time_iso_8601": "2021-12-16T16:10:29.089818Z", "url": "https://files.pythonhosted.org/packages/7d/6c/d856283579d69a4faca29d3d8ca17594d693f9b69c60ee286ca9520c15b9/ray-1.9.1rc0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9b937556fbb5e65b0d3b974bf83146b", "sha256": "cd40d71a8c6fc10637d8a8de6a603b42c81bd52c5751adae07c443551f4e73d3" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "e9b937556fbb5e65b0d3b974bf83146b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 58916975, "upload_time": "2021-12-16T16:11:02", "upload_time_iso_8601": "2021-12-16T16:11:02.832945Z", "url": "https://files.pythonhosted.org/packages/cc/86/a2f5193b22ac868b2787bab86355dfbf922864053c0208033c3fbaa6ffc9/ray-1.9.1rc0-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a501ef33583aff537867c473703b955", "sha256": "f1e70f96842fea83df65624a8aec84f832d924efc139d50dfef1ad6673c71fd5" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "7a501ef33583aff537867c473703b955", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 57654743, "upload_time": "2021-12-16T16:11:35", "upload_time_iso_8601": "2021-12-16T16:11:35.316670Z", "url": "https://files.pythonhosted.org/packages/44/7f/7af15a95cda7d45c792468268674aa79130bc5c9308c6e9fb8f9ff20f662/ray-1.9.1rc0-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82347077497abd532e6d25e9a4c473cc", "sha256": "aa71c21db92b92c6a94f67309160217d7b9fb14e2e7d1cd148ce3beb5a0ee8c6" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "82347077497abd532e6d25e9a4c473cc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21378495, "upload_time": "2021-12-16T16:11:49", "upload_time_iso_8601": "2021-12-16T16:11:49.984912Z", "url": "https://files.pythonhosted.org/packages/c1/f8/aec560571ecde46b673522541422ae851a7fd9f28d077db5916e9372a8c6/ray-1.9.1rc0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "056728e1a3fe38b71830da384b8bf895", "sha256": "d3f3720e28cb77f0574aef06d2624a039ac4474cea085862b891e025533a9222" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "056728e1a3fe38b71830da384b8bf895", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 58745466, "upload_time": "2021-12-16T16:12:22", "upload_time_iso_8601": "2021-12-16T16:12:22.290232Z", "url": "https://files.pythonhosted.org/packages/ca/bc/9623155b762dba6731b5ab3b4bec3640e5ab9efeedeabd0999a6806356e9/ray-1.9.1rc0-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d61fac16f5e9cd69052c490961ef37a1", "sha256": "8947d0eba3188df6c06fefd03a1c5c000ccdcae301459058811b783082561609" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "d61fac16f5e9cd69052c490961ef37a1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 26553888, "upload_time": "2021-12-16T19:04:43", "upload_time_iso_8601": "2021-12-16T19:04:43.246395Z", "url": "https://files.pythonhosted.org/packages/1c/5c/bc869ecaf03636dc8faa4496f8d7371ecf0416deb0d8e40ab18e5ebab733/ray-1.9.1rc0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43e5f2f87d6be224098222e34bdd2b02", "sha256": "6ee0f849ec669aced14425516d2b0b423a072436ac90381ec5abcfaa9602852a" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "43e5f2f87d6be224098222e34bdd2b02", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 57387246, "upload_time": "2021-12-16T17:36:28", "upload_time_iso_8601": "2021-12-16T17:36:28.515918Z", "url": "https://files.pythonhosted.org/packages/84/d4/0a14e4a7dc9a9a72c1ce55041eab699578321beebf86718ac45017e2f2dd/ray-1.9.1rc0-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2685f8fa99ef28ef7e682488fc7f6733", "sha256": "bcd7f7333ebaa6b151e8e0c15d18767517b39dec8a1de3c6a823d8e44602440a" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "2685f8fa99ef28ef7e682488fc7f6733", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 21273112, "upload_time": "2021-12-16T17:36:45", "upload_time_iso_8601": "2021-12-16T17:36:45.589746Z", "url": "https://files.pythonhosted.org/packages/d0/ab/9377ac7f57ee2790c3c17ae73ee7e0d223b07965414542061988bfd7f12c/ray-1.9.1rc0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c98b0b995fc3d95213ab412cc6f4c0b1", "sha256": "a2cf5bb3686ce3c7a87b174258d6b6ea952ec791678ae451371c27691a673021" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "c98b0b995fc3d95213ab412cc6f4c0b1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 58748476, "upload_time": "2021-12-16T17:37:19", "upload_time_iso_8601": "2021-12-16T17:37:19.560434Z", "url": "https://files.pythonhosted.org/packages/f5/43/508efdaf775fdecc165487c2ad508ea7e3a6f71b64e0e5374b919f0875e3/ray-1.9.1rc0-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "003332a509d8a6610474b389147f61cd", "sha256": "ba3f326c3c5fb87ab013a4153a327bbbf6b2a4ec3d64ea1aa561d59c4c2df75d" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "003332a509d8a6610474b389147f61cd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 26556265, "upload_time": "2021-12-16T17:50:53", "upload_time_iso_8601": "2021-12-16T17:50:53.690953Z", "url": "https://files.pythonhosted.org/packages/a7/66/a3e522b90f1110b6617eee0da96d604c627878b5c96f5aa3273d7b818ff0/ray-1.9.1rc0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e41faa85d017e2fe11215f2a565aa27", "sha256": "6c76f9dbd33d57b252ae0928588af26fdf644fb0a7143d545f2a427885dc1b07" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "5e41faa85d017e2fe11215f2a565aa27", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 57360415, "upload_time": "2021-12-16T17:38:03", "upload_time_iso_8601": "2021-12-16T17:38:03.132851Z", "url": "https://files.pythonhosted.org/packages/0e/9f/54ca0ce37b1b3f33780cbb4a96e8ee20aae55a166085687cae71a72b358f/ray-1.9.1rc0-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cd33f4fda6c941d777aa88b6d6a67e7", "sha256": "a21352be9d24120981dfaf30839eca47e407ca3a6f02fe9e115e17096ba7db26" }, "downloads": -1, "filename": "ray-1.9.1rc0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "2cd33f4fda6c941d777aa88b6d6a67e7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 21275558, "upload_time": "2021-12-16T17:38:18", "upload_time_iso_8601": "2021-12-16T17:38:18.657979Z", "url": "https://files.pythonhosted.org/packages/72/b7/67027a518a543aeb90c03dd4564f451d82dde0f7cad8059e1f1f9865d218/ray-1.9.1rc0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "82c8b1ce0f9973dee05d0568631185a5", "sha256": "a2b34ec2e63264593b07ace70541ffe5ba9069ecc2dc94294ffc1c3b491a751e" }, "downloads": -1, "filename": "ray-1.9.2-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "82c8b1ce0f9973dee05d0568631185a5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 58930904, "upload_time": "2022-01-11T19:35:21", "upload_time_iso_8601": "2022-01-11T19:35:21.327512Z", "url": "https://files.pythonhosted.org/packages/e8/4b/d4ea8a9fee4a1922e547de81ad1e55ee719fd1b9e5991abbe96f71f92234/ray-1.9.2-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61c0387033514f424909465b8b556f28", "sha256": "236dc9b43478339576fd2545f2ad898caca4df4df0fc17cb6947316a242ebb81" }, "downloads": -1, "filename": "ray-1.9.2-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "61c0387033514f424909465b8b556f28", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 57644156, "upload_time": "2022-01-11T19:35:59", "upload_time_iso_8601": "2022-01-11T19:35:59.515267Z", "url": "https://files.pythonhosted.org/packages/af/84/cc96faccfb0589a4ec620789b7cfe32fee0368b20654c5eedec527bbf877/ray-1.9.2-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d1455cea95a1f850b1a8989b6e47772", "sha256": "513e8db6dd6320a77df4ef91c273b2fa428df9474450e7d84d70edccb1739baf" }, "downloads": -1, "filename": "ray-1.9.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0d1455cea95a1f850b1a8989b6e47772", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 21365844, "upload_time": "2022-01-11T19:36:14", "upload_time_iso_8601": "2022-01-11T19:36:14.398556Z", "url": "https://files.pythonhosted.org/packages/ea/9a/942870001b93845c73b422c477ed259fafbcefab63a8934018d69ae354ba/ray-1.9.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0457a311ad728ae455c4b774c77347d7", "sha256": "dc811b8fbaff6a6fc2602a7cd0a9b93e441770e56a6e0065be385b01958c34be" }, "downloads": -1, "filename": "ray-1.9.2-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "0457a311ad728ae455c4b774c77347d7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 58902638, "upload_time": "2022-01-11T19:36:46", "upload_time_iso_8601": "2022-01-11T19:36:46.009597Z", "url": "https://files.pythonhosted.org/packages/cc/d4/9ac18ee03599d9afceda87748c051644e8f766bd23d72d7bbd8cdb7337ad/ray-1.9.2-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd8dd6e1447d420378abd31875185d3f", "sha256": "4fe10c58edb6d1e7349bbd2cab31248fcfdcf8f4d5050fc315a03069f1036be2" }, "downloads": -1, "filename": "ray-1.9.2-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bd8dd6e1447d420378abd31875185d3f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 57647261, "upload_time": "2022-01-11T19:37:17", "upload_time_iso_8601": "2022-01-11T19:37:17.447273Z", "url": "https://files.pythonhosted.org/packages/87/cb/9fb296c89ceef4edf45c3d967a75a6b63a8d1aba12ebaf8cced1d5d4b05d/ray-1.9.2-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e75f57903ce96bbb17b0a5921e1a6251", "sha256": "0707b9b3c88f2c936ec6e38f05e0f4cb354ed47f06411ef15e88b9722dca739e" }, "downloads": -1, "filename": "ray-1.9.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e75f57903ce96bbb17b0a5921e1a6251", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 21367069, "upload_time": "2022-01-11T19:37:31", "upload_time_iso_8601": "2022-01-11T19:37:31.873887Z", "url": "https://files.pythonhosted.org/packages/77/32/aeefa424e5ad9ebfc3526a9d8f7df06bebb24c01fc06615b4d887f8df540/ray-1.9.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a86eca55c8361dbfccbd225cee6081b", "sha256": "875cb87ed44606a3b16a2866dfcddf97d03b42db514140562f2826c014a762cc" }, "downloads": -1, "filename": "ray-1.9.2-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "8a86eca55c8361dbfccbd225cee6081b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 58731160, "upload_time": "2022-01-11T19:38:04", "upload_time_iso_8601": "2022-01-11T19:38:04.064924Z", "url": "https://files.pythonhosted.org/packages/35/b5/37bdfee060089de9bcc025f70eabbffa66aa44f7157621f3324991edb24a/ray-1.9.2-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2b36a7086b123c0300e21b57709dbdf", "sha256": "749117ef11e8d22a24b11968c0c499bad83d5125e5937a7253a2079b0ac539a6" }, "downloads": -1, "filename": "ray-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "c2b36a7086b123c0300e21b57709dbdf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 26550158, "upload_time": "2022-01-11T19:38:21", "upload_time_iso_8601": "2022-01-11T19:38:21.394338Z", "url": "https://files.pythonhosted.org/packages/ec/5b/fa7afe6e18f6872464a11e2412f9c282b4d11617a0e96ec9b25ac8b431db/ray-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7cfe0294680cfe3247e444f07a6cede", "sha256": "096322f006fab7d9584593454dd45005be4e2ae8a24e8f4ca626474d42bf2581" }, "downloads": -1, "filename": "ray-1.9.2-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a7cfe0294680cfe3247e444f07a6cede", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 57379879, "upload_time": "2022-01-11T19:38:52", "upload_time_iso_8601": "2022-01-11T19:38:52.810514Z", "url": "https://files.pythonhosted.org/packages/df/40/c99104ea654abc9d8223b04c907e20aa934fb2b8d3bd76550feea9aa52cf/ray-1.9.2-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "beb5cdaf35506417ef387e1278b696e4", "sha256": "6169d3fe4a31a3306731a271c0802fdecb838fb90caacce848ce27209205db17" }, "downloads": -1, "filename": "ray-1.9.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "beb5cdaf35506417ef387e1278b696e4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 21261480, "upload_time": "2022-01-11T19:39:07", "upload_time_iso_8601": "2022-01-11T19:39:07.900907Z", "url": "https://files.pythonhosted.org/packages/30/e0/449857d539b0cb58a09476b906995639f58b978bc9404848a6f9291230e7/ray-1.9.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f96330e63b66fda90acf8d912e1a3e7a", "sha256": "a17b7496e8fef1a829f70b16f5498979cb33c98d9e4567f89ea55aeea0690e4e" }, "downloads": -1, "filename": "ray-1.9.2-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "f96330e63b66fda90acf8d912e1a3e7a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 58734178, "upload_time": "2022-01-11T19:39:40", "upload_time_iso_8601": "2022-01-11T19:39:40.651156Z", "url": "https://files.pythonhosted.org/packages/5b/d0/c2f8df3f4ed067f8b4e88417327bb7592f4a1172fdd4df7fc31670b59ee7/ray-1.9.2-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6827d8b6de816aa3189a75cc3d728c5", "sha256": "2ad01e197f65b4e110e44f84e856af1c888e48bb8e1e4ae9ffa4e1aec710b9a8" }, "downloads": -1, "filename": "ray-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "f6827d8b6de816aa3189a75cc3d728c5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 26554366, "upload_time": "2022-01-11T19:39:58", "upload_time_iso_8601": "2022-01-11T19:39:58.524083Z", "url": "https://files.pythonhosted.org/packages/ce/dc/b2cefd0594aeec0b211d9fba87f9055cfc26f80cd3fe1d65bd8a30b6b110/ray-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2042988eef995499f2d50e03381edffb", "sha256": "76294786421799a2a157917cbe493f758ae2f5a0acee8ac23cb885936b1a4e35" }, "downloads": -1, "filename": "ray-1.9.2-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "2042988eef995499f2d50e03381edffb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 57353072, "upload_time": "2022-01-11T19:40:30", "upload_time_iso_8601": "2022-01-11T19:40:30.320414Z", "url": "https://files.pythonhosted.org/packages/85/72/ba45b2c96ab80fc5d89f58465aac86ace7aa3ed73084a1a3c356b2394e56/ray-1.9.2-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4a654850f3acdfba171a2aec9ef9328", "sha256": "a9de944bd0dc4d553d10eb31efba4eab508f65289c5595ab56df44f65810d9dd" }, "downloads": -1, "filename": "ray-1.9.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "d4a654850f3acdfba171a2aec9ef9328", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 21263917, "upload_time": "2022-01-11T19:40:46", "upload_time_iso_8601": "2022-01-11T19:40:46.968744Z", "url": "https://files.pythonhosted.org/packages/22/d4/651789cddeebd7f68247dc9b03f2d4882434cfa6d8047e73172d307e7a82/ray-1.9.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8cc0e2f66b51c2e7a9f50b510a9a8898", "sha256": "f484f919fadfde40a09bc7e96566da5dbb03e1bf5175f492c8e0faa981660c1b" }, "downloads": -1, "filename": "ray-1.12.1-cp36-cp36m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "8cc0e2f66b51c2e7a9f50b510a9a8898", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 55967126, "upload_time": "2022-05-16T22:38:01", "upload_time_iso_8601": "2022-05-16T22:38:01.973904Z", "url": "https://files.pythonhosted.org/packages/e7/1a/a9610abc4d7849fce2d4d62ef24836f9efe6b4f7f2385382f9b63b847b08/ray-1.12.1-cp36-cp36m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15b5446855f8e706fc7d1ab957d7c3b0", "sha256": "8bdb6686587e2a1a6f5aabea3027c2449dba9375911147a70acd98dc01373e76" }, "downloads": -1, "filename": "ray-1.12.1-cp36-cp36m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "15b5446855f8e706fc7d1ab957d7c3b0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 53197052, "upload_time": "2022-05-16T22:38:15", "upload_time_iso_8601": "2022-05-16T22:38:15.207719Z", "url": "https://files.pythonhosted.org/packages/ad/3a/ebc3a3c9453acd209db7342beab91e02d0e6b05bf7a6cd9d6fe708c66445/ray-1.12.1-cp36-cp36m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c837b766ed9ce84441ff6f4378fbaf1c", "sha256": "a8775e8c6f3669f28da24dc534c65dc42a0dba3279288af95d6d37574f241850" }, "downloads": -1, "filename": "ray-1.12.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c837b766ed9ce84441ff6f4378fbaf1c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 19986230, "upload_time": "2022-05-16T22:38:21", "upload_time_iso_8601": "2022-05-16T22:38:21.910925Z", "url": "https://files.pythonhosted.org/packages/f9/ed/c8c608ff6d07096295761cf8eab9778941451ead3cad3b73c1b87f2166b0/ray-1.12.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ba9372e5fa11965567fb6b81893401e", "sha256": "cc3fe87403c2ab3477e96e49c56e4d98c7cb54677370a0a5ba0e20c15fc76cd7" }, "downloads": -1, "filename": "ray-1.12.1-cp37-cp37m-macosx_10_15_intel.whl", "has_sig": false, "md5_digest": "5ba9372e5fa11965567fb6b81893401e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 55966137, "upload_time": "2022-05-16T22:38:32", "upload_time_iso_8601": "2022-05-16T22:38:32.638127Z", "url": "https://files.pythonhosted.org/packages/7d/97/6c10a5f479c74733478a2991208b058e2f2e2a422bdd5fdef2715d26e88d/ray-1.12.1-cp37-cp37m-macosx_10_15_intel.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "885ac34f7161b4d0c51049d2537e365f", "sha256": "e429012fa60f4562d650accd11b21fa4b752efc28ab205305be5e0e49d9e4d45" }, "downloads": -1, "filename": "ray-1.12.1-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "885ac34f7161b4d0c51049d2537e365f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 53194426, "upload_time": "2022-05-16T22:38:41", "upload_time_iso_8601": "2022-05-16T22:38:41.564023Z", "url": "https://files.pythonhosted.org/packages/f3/dc/568707a9fafe3d348590588575031dcd99a2f604f7dbffafb60ee1bc2489/ray-1.12.1-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "645d913cd654564906e24fb132e38550", "sha256": "6aac545c35823f2693ca412ed1e706f10211926ff2e01ea64cd0b2b214dd1cd3" }, "downloads": -1, "filename": "ray-1.12.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "645d913cd654564906e24fb132e38550", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 19901645, "upload_time": "2022-05-16T22:38:47", "upload_time_iso_8601": "2022-05-16T22:38:47.433376Z", "url": "https://files.pythonhosted.org/packages/b4/6d/37ddaf21cb50e93932919dd68dc965c9975bddf78802d156551d6a3db3f1/ray-1.12.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "888e9abc099be417e20e32544d9c617e", "sha256": "578a9da60c4e981dc8b1bc6058ed0355f00ae77ad3be3fa271d74ad39d6cd3c7" }, "downloads": -1, "filename": "ray-1.12.1-cp38-cp38-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "888e9abc099be417e20e32544d9c617e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 55794630, "upload_time": "2022-05-16T22:39:36", "upload_time_iso_8601": "2022-05-16T22:39:36.046877Z", "url": "https://files.pythonhosted.org/packages/b5/e2/40542e46f3f765b9e845087f11fe20d596ffbe081e826dcb8129a28d8a92/ray-1.12.1-cp38-cp38-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81b04e5683b18cdb60af6f07462c39a2", "sha256": "95eead495961e3fc47fd1a2c9b8528a41cf53c8141a04e4aa6d49ae0416ffcdd" }, "downloads": -1, "filename": "ray-1.12.1-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "81b04e5683b18cdb60af6f07462c39a2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 52928937, "upload_time": "2022-05-16T22:39:45", "upload_time_iso_8601": "2022-05-16T22:39:45.107273Z", "url": "https://files.pythonhosted.org/packages/48/d2/4980315a5133202132f0d7f1a24d2bb50952282c83bc3d8061e831bf77cf/ray-1.12.1-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7733eb0fe631b29616ad879c57a567c5", "sha256": "45402dc41b251682d6d37c54370e8a1795fffaaaf1c95a36c93ec43d2ceef5e9" }, "downloads": -1, "filename": "ray-1.12.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7733eb0fe631b29616ad879c57a567c5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 19801011, "upload_time": "2022-05-16T22:39:50", "upload_time_iso_8601": "2022-05-16T22:39:50.703066Z", "url": "https://files.pythonhosted.org/packages/49/d9/4226c2072d104aa8b975fba1695197c9d3e9fdda96789ba6e6ac7f27e076/ray-1.12.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e10967ce363070fd15dc0c2be7c0571", "sha256": "2cec0e468296811906b82d7787d5d809646f465343e9842ccaf2e8da11e1f08c" }, "downloads": -1, "filename": "ray-1.12.1-cp39-cp39-macosx_10_15_x86_64.whl", "has_sig": false, "md5_digest": "5e10967ce363070fd15dc0c2be7c0571", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 55796625, "upload_time": "2022-05-16T22:39:58", "upload_time_iso_8601": "2022-05-16T22:39:58.571920Z", "url": "https://files.pythonhosted.org/packages/17/a4/0949c91dbe54f3c5f1868b1fc145056c30d4031f77e131eb3027bd31b6f8/ray-1.12.1-cp39-cp39-macosx_10_15_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d20b108311120158220d3ffd83eb205", "sha256": "f546a4f56828a2fc21b605f8ac448dc29aaa120bb759fb00c090974638ae0e20" }, "downloads": -1, "filename": "ray-1.12.1-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1d20b108311120158220d3ffd83eb205", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 52908115, "upload_time": "2022-05-16T22:40:10", "upload_time_iso_8601": "2022-05-16T22:40:10.763798Z", "url": "https://files.pythonhosted.org/packages/c7/53/0ddbbe11f175d321a67d95b08fa4500b13c900b47a2305bdd1db44286cd5/ray-1.12.1-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "419a505cd980067c1c0897a1600aaadf", "sha256": "8b4c7051170d39b566f5b13129f3a72d219664d780abd71b4eb5f81cdf705d57" }, "downloads": -1, "filename": "ray-1.12.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "419a505cd980067c1c0897a1600aaadf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 19800765, "upload_time": "2022-05-16T22:40:16", "upload_time_iso_8601": "2022-05-16T22:40:16.839712Z", "url": "https://files.pythonhosted.org/packages/99/92/64d21284a56c9cfc72de51fb5d4b9e3d5b4fbb04bf0e4679594ceeee14ea/ray-1.12.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }