File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed 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] %}
2
6
3
7
package :
4
- name : {{ data.get("name")|lower }}
5
- version : {{ data.get(" version") }}
8
+ name : linear_operator
9
+ version : {{ version }}
6
10
7
11
source :
8
12
path : ../
Original file line number Diff line number Diff line change 54
54
conda config --set anaconda_upload yes
55
55
conda config --append channels pytorch
56
56
conda config --append channels gpytorch
57
+ conda config --append channels conda-forge
57
58
/usr/share/miniconda/bin/anaconda login --username ${{ secrets.CONDA_USERNAME }} --password ${{ secrets.CONDA_PASSWORD }}
58
59
python -m setuptools_scm
59
- cd .conda
60
- conda build .
60
+ conda build .conda
61
61
/usr/share/miniconda/bin/anaconda logout
62
- cd ..
You can’t perform that action at this time.
0 commit comments