Skip to content

Commit

Permalink
Merge pull request #3 from ocefpaf/bump
Browse files Browse the repository at this point in the history
Updated to 5.0.0
  • Loading branch information
jakirkham committed May 5, 2016
2 parents 82c5a16 + f7a92b0 commit 7113b31
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 10 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ env:


before_install:
# Remove homebrew.
- brew remove --force $(brew list)
- brew cleanup -s
- rm -rf $(brew --cache)

install:
- |
Expand All @@ -26,8 +29,9 @@ install:
export PATH=/Users/travis/miniconda3/bin:$PATH
conda config --set show_channel_urls true
conda update --yes conda
conda install --yes conda-build jinja2 anaconda-client
conda install --yes conda-build=1.20.0 jinja2 anaconda-client
conda config --add channels conda-forge
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
About ipywidgets
================

Home: http://github.com/jakevdp/ipywidgets
Home: https://github.com/ipython/ipywidgets

Package license: BSD 3-clause

Feedstock license: BSD
Feedstock license: BSD 3-Clause

Summary: IPython Static Widgets

Expand Down
5 changes: 5 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,15 @@ install:
- cmd: set PATH=%CONDA_INSTALL_LOCN%;%CONDA_INSTALL_LOCN%\scripts;%PATH%
- cmd: set PYTHONUNBUFFERED=1

- cmd: conda config --set show_channel_urls true
- cmd: conda install -c http://conda.binstar.org/pelson/channel/development --yes --quiet obvious-ci
- cmd: conda config --add channels http://conda.binstar.org/conda-forge
- cmd: conda info
- cmd: conda install -n root --quiet --yes conda-build anaconda-client jinja2 setuptools
# Workaround for Python 3.4 and x64 bug in latest conda-build.
# FIXME: Remove once there is a release that fixes the upstream issue
# ( https://github.com/conda/conda-build/issues/895 ).
- cmd: if "%TARGET_ARCH%" == "x64" if "%CONDA_PY%" == "34" conda install conda-build=1.20.0 --yes

# Skip .NET project specific build phase.
build: off
Expand Down
2 changes: 1 addition & 1 deletion ci_support/run_docker_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ channels:
conda-build:
root-dir: /feedstock_root/build_artefacts
show_channel_urls: True
show_channel_urls: true
CONDARC
)
Expand Down
15 changes: 9 additions & 6 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{% set version = "4.1.1" %}
{% set version = "5.1.3" %}

package:
name: ipywidgets
version: {{ version }}

source:
fn: ipywidgets-{{ version }}.tar.gz
url: https://pypi.python.org/packages/source/i/ipywidgets/ipywidgets-{{ version }}.tar.gz
md5: 491affdef8e0586eeeb299226ff634aa
url: https://github.com/ipython/ipywidgets/archive/{{ version }}.tar.gz
sha256: acc9ee977ce6aa7b516d8f769b57b2a7dca8c064122cb8024d3b6acbd61972f9

build:
number: 0
script: python setup.py install
script: python -m pip install --no-deps .

requirements:
build:
Expand All @@ -22,18 +22,21 @@ requirements:
- ipykernel
- traitlets
- notebook
- widgetsnbextension

test:
imports:
- ipywidgets

about:
home: http://github.com/jakevdp/ipywidgets
home: https://github.com/ipython/ipywidgets
license: BSD 3-clause
summary: IPython Static Widgets
summary: Widgets for the Jupyter Notebook

extra:
recipe-maintainers:
- jakirkham
- minrk
- pelson
- SylvainCorlay
- willingc

0 comments on commit 7113b31

Please sign in to comment.