Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for 0.10.1 #27

Merged
merged 6 commits into from
Feb 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,24 +51,24 @@ install:

# Add path, activate `conda` and update conda.
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda update --yes --quiet conda
- cmd: conda.exe update --yes --quiet conda

- cmd: set PYTHONUNBUFFERED=1

# Add our channels.
- cmd: conda config --set show_channel_urls true
- cmd: conda config --remove channels defaults
- cmd: conda config --add channels defaults
- cmd: conda config --add channels conda-forge
- cmd: conda.exe config --set show_channel_urls true
- cmd: conda.exe config --remove channels defaults
- cmd: conda.exe config --add channels defaults
- cmd: conda.exe config --add channels conda-forge

# Configure the VM.
- cmd: conda install -n root --quiet --yes conda-forge-build-setup
- cmd: conda.exe install -n root --quiet --yes conda-forge-build-setup
- cmd: run_conda_forge_build_setup

# Skip .NET project specific build phase.
build: off

test_script:
- conda build recipe --quiet
- conda.exe build recipe --quiet
deploy_script:
- cmd: upload_or_check_non_existence .\recipe conda-forge --channel=main
17 changes: 8 additions & 9 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,29 @@
{% set version = "0.10.0" %}
{% set version = "0.10.1" %}

package:
name: xarray
version: {{ version }}

source:
fn: xarray-{{ version }}.tar.gz
url: https://github.com/pydata/xarray/archive/v{{ version }}.tar.gz
sha256: 9191838f82467b3e2cc11670f6573202548ac9562d6d3abba6bcba34fc1b66f0
url: https://pypi.io/packages/source/x/xarray/xarray-{{ version }}.tar.gz
sha256: cc183c2d7b1788cdaeb895102b1b6c2b6a3544182ff714e92f404c29db93cc9d

build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
script: python -m pip install --no-deps --ignore-installed .

requirements:
build:
- python
- setuptools
- pip
run:
- python
- numpy
- pandas
- numpy >=1.11
- pandas >=0.18
- netcdf4
- scipy
- bottleneck
- dask >=0.6
- dask >=0.9
- h5netcdf
- cyordereddict # [not py>=35]

Expand Down