We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e6d51 commit 83332c2Copy full SHA for 83332c2
.conda/meta.yaml
@@ -1,8 +1,12 @@
1
-{% set data = load_setup_py_data() %}
+{% set _version_match = load_file_regex(
2
+ load_file="gpytorch/version.py",
3
+ regex_pattern="__version__ = version = '(.+)'"
4
+) %}
5
+{% set version = _version_match[1] %}
6
7
package:
- name: {{ data.get("name")|lower }}
- version: {{ data.get("version") }}
8
+ name: gpytorch
9
+ version: {{ version }}
10
11
source:
12
path: ../
0 commit comments