You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying run conda-build-all on the included recipe, I encounter a build issue when the root environment is Python 3, but not when the root environment is Python 2. More details about the recipe and environments below. Was unable to reproduce this with conda-build alone in either environment. Am sort of suspicious that this issue is actually caused by Python versions. Though it could be.
Python 3 traceback (Python 2 has no issues).
$ conda build-all recipes/wrf-python --matrix-condition "numpy >=1.11" "python >=2.7,<3|>=3.5"
Fetching package metadata .............
Error: Invalid selector in meta.yaml line 15:
skip: True # [win32 or np>=112 or (win and py>=35)]
Recipe below.
# meta.yaml{% set version = "1.0b1" %}package:
name: wrf-pythonversion: {{ version }}source:
fn: wrf-python-{{ version }}.tar.gzurl: https://github.com/NCAR/wrf-python/archive/{{ version }}.tar.gzsha256: 94f05a9719701959702094eafb84555a996bc4f7d75042fb07bca3c35bda9f31build:
number: 1detect_binary_files_with_prefix: trueskip: True # [win32 or np>=112 or (win and py>=35)]requirements:
build:
- pip
- numpy x.x
- wrapt
- m2w64-toolchain # [win]
- gcc # [unix]
- libgcc # [unix]
- python
- vc 9 # [win and py27]
- vc 10 # [win and py34]
- vc 14 # [win and py>=35]run:
- numpy x.x
- python
- wrapt
- m2w64-toolchain # [win]
- gcc # [unix]
- libgcc # [unix]
- xarray
- vc 9 # [win and py27]
- vc 10 # [win and py34]
- vc 14 # [win and py>=35]test:
requires:
- noseimports:
- wrf about:
home: https://github.com/NCAR/wrf-pythonlicense: "NCL Source Code"summary: "Diagnostic and interpolation routines for WRF-ARW data."extra:
recipe-maintainers:
- bladwig1
- marylhaley
- david-ian-brown
- khallock
When trying run
conda-build-all
on the included recipe, I encounter a build issue when theroot
environment is Python 3, but not when theroot
environment is Python 2. More details about the recipe and environments below. Was unable to reproduce this withconda-build
alone in either environment. Am sort of suspicious that this issue is actually caused by Python versions. Though it could be.Python 3 traceback (Python 2 has no issues).
Recipe below.
Python 2 environment
Python 3 environment
The text was updated successfully, but these errors were encountered: