conda_build_config.yaml 804 B

12345678910111213141516171819202122232425
  1. channel_sources:
  2. - pytorch-nightly,pytorch,defaults
  3. blas_impl:
  4. - mkl # [x86_64]
  5. c_compiler:
  6. - vs2017 # [win]
  7. cxx_compiler:
  8. - vs2017 # [win]
  9. python:
  10. - 3.8
  11. # This differs from target_platform in that it determines what subdir the compiler
  12. # will target, not what subdir the compiler package will be itself.
  13. # For example, we need a win-64 vs2008_win-32 package, so that we compile win-32
  14. # code on win-64 miniconda.
  15. cross_compiler_target_platform:
  16. - win-64 # [win]
  17. target_platform:
  18. - win-64 # [win]
  19. vc:
  20. - 14
  21. zip_keys:
  22. - # [win]
  23. - vc # [win]
  24. - c_compiler # [win]
  25. - cxx_compiler # [win]