You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
621 B

  1. package:
  2. name: pybind11
  3. version: {{ environ.get('GIT_DESCRIBE_TAG', '').replace('v', '') }}
  4. build:
  5. number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
  6. {% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0
  7. {% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %}
  8. source:
  9. git_url: ../
  10. requirements:
  11. build:
  12. - python
  13. run:
  14. - python
  15. test:
  16. imports:
  17. - pybind11
  18. about:
  19. home: https://github.com/pybind/pybind11/
  20. summary: Seamless operability between C++11 and Python