app_config.yaml 519 B

1234567891011121314151617181920
  1. base_image: {{ env["RAY_IMAGE_NIGHTLY_CPU"] | default("anyscale/ray:nightly-py37") }}
  2. env_vars: {}
  3. debian_packages:
  4. - curl
  5. python:
  6. pip_packages:
  7. - pytest
  8. - awscli
  9. - gsutil
  10. - gym>=0.21.0,<0.24.1
  11. - gcsfs<=2022.7.1
  12. - pyarrow>=6.0.1,<7.0.0
  13. - tensorboardX
  14. conda_packages: []
  15. post_build_cmds:
  16. # Install Ray
  17. - pip3 uninstall -y ray || true && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  18. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}