File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- {% set data = load_setup_py_data(setup_file="../setup.py", from_recipe_dir=True) %}
1+ {% set _version_match = load_file_regex(
2+ load_file="linear_operator/version.py",
3+ regex_pattern="__version__ = version = '(.+)'"
4+ ) %}
5+ {% set version = _version_match[1] %}
26
37package :
4- name : {{ data.get("name")|lower }}
5- version : {{ data.get(" version") }}
8+ name : linear_operator
9+ version : {{ version }}
610
711source :
812 path : ../
Original file line number Diff line number Diff line change 5454 conda config --set anaconda_upload yes
5555 conda config --append channels pytorch
5656 conda config --append channels gpytorch
57+ conda config --append channels conda-forge
5758 /usr/share/miniconda/bin/anaconda login --username ${{ secrets.CONDA_USERNAME }} --password ${{ secrets.CONDA_PASSWORD }}
5859 python -m setuptools_scm
59- cd .conda
60- conda build .
60+ conda build .conda
6161 /usr/share/miniconda/bin/anaconda logout
62- cd ..
You can’t perform that action at this time.
0 commit comments