We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08fac72 commit e5bc7e5Copy full SHA for e5bc7e5
1 file changed
packaging/conda/meta.yaml
@@ -1,7 +1,8 @@
1
{% set metadata = load_setup_py_data(setup_file='../../setup.py', from_recipe_dir=True) %}
2
package:
3
name: {{ metadata.get('name') }}
4
- version: {{ metadata.get('version') }}
+ # The Conda version cannot contain the '-' character, so we eliminate it
5
+ version: {{ metadata.get('version') | replace('-', '') }}
6
7
source:
8
path: ../../
0 commit comments