Browse Source

Fixed accidental removal of future declarations

main WRF_Workshop_2016
Bill Ladwig 9 years ago
parent
commit
99d1e60863
  1. 6
      conda_recipe/meta.yaml
  2. 3
      src/wrf/routines.py

6
conda_recipe/meta.yaml

@ -3,11 +3,11 @@ package:
version: "0.0.1" version: "0.0.1"
source: source:
git_url: https://github.com/NCAR/wrf-python.git git_url: git@github.com:NCAR/wrf-python.git
git_rev: WRF_Workshop_2016 git_rev: WRF_Workshop_2016
build: build:
number: 1 number: 5
detect_binary_files_with_prefix: true detect_binary_files_with_prefix: true
requirements: requirements:
@ -15,11 +15,13 @@ requirements:
- numpy x.x - numpy x.x
- gcc - gcc
- python - python
- libgcc 4.8.5
run: run:
- numpy x.x - numpy x.x
- python - python
- wrapt - wrapt
- libgcc 4.8.5
test: test:
requires: requires:

3
src/wrf/routines.py

@ -1,4 +1,5 @@
from __future__ import (absolute_import, division, print_function,
unicode_literals)
from .util import _get_iterable, is_standard_wrf_var, extract_vars, viewkeys from .util import _get_iterable, is_standard_wrf_var, extract_vars, viewkeys
from .cape import get_2dcape, get_3dcape from .cape import get_2dcape, get_3dcape

Loading…
Cancel
Save