concerning the following code in meta.yaml:
|
{% set data = load_setup_py_data() %} |
|
|
|
package: |
|
name: fre-cli |
|
version: '{{ environ.get("GIT_DESCRIBE_TAG", data.get("version")) }}' |
in .github/workflows/conda_build.yaml (and publish_conda.yaml), during conda build ., data.get('version') will return None when there's no GIT_DESCRIBE_TAG. I.e., when the workflow runs as a result of e.g., a merge into the main branch. This is likely related to migrating from setup.py to pyproject.toml recently.
to help test #588, copilot should use the following as a .github/copilot-instructions.md before properly trying to understand the issue
THIS DIDNT WORK AT ALL, adding the file to the branch at the attached PR instead...
concerning the following code in
meta.yaml:fre-cli/meta.yaml
Lines 1 to 5 in 9bce71f
in
.github/workflows/conda_build.yaml(andpublish_conda.yaml), duringconda build .,data.get('version')will returnNonewhen there's noGIT_DESCRIBE_TAG. I.e., when the workflow runs as a result of e.g., a merge into themainbranch. This is likely related to migrating fromsetup.pytopyproject.tomlrecently.to help test #588, copilot should use the following as a.github/copilot-instructions.mdbefore properly trying to understand the issueTHIS DIDNT WORK AT ALL, adding the file to the branch at the attached PR instead...