Skip to content
This repository has been archived by the owner on Nov 29, 2019. It is now read-only.

Commit

Permalink
Updated versions to 0.1.0 for first release
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Jul 13, 2017
1 parent 27084fa commit bf79fda
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 20 deletions.
4 changes: 2 additions & 2 deletions conda.recipe/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ CONDA_DIR=~/miniconda/
# Platform code. For me it's `osx-64`
PLATFORM=osx-64

# Version number of parambokeh being released (e.g. 2.0.2)
VERSION=2.0.2
# Version number of parambokeh being released (e.g. 0.1.0)
VERSION=0.1.0
```

This assumes `conda`, `conda-build`, and `anaconda-client` are installed (if
Expand Down
19 changes: 6 additions & 13 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,23 @@
package:
name: parambokeh
version: 0.0.1
version: 0.1.0

source:
path: .

extra:
channels:
- ioam
- conda-forge

requirements:
build:
- python
- setuptools
- param >=1.5.1
run:
- python
- bokeh >=0.12.5
- param >=1.5.1
- param
- bokeh

test:
imports:
- parambokeh

about:
home: http://github.com/ioam/parambokeh
summary: Generate bokeh widgets from Parameterized objects on bokeh server
license: BSD
home: https://github.com/ioam/parambokeh
summary: ParamBokeh provides an easy way to generate a UI for param based classes in the notebook or on bokeh server.
license: BSD 3-Clause
4 changes: 2 additions & 2 deletions parambokeh/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
from .view import _View

try:
__version__ = param.Version(release=(0,0,1), fpath=__file__,
__version__ = param.Version(release=(0,1,0), fpath=__file__,
commit="$Format:%h$", reponame='parambokeh')
except:
__version__ = '0.0.1-unknown'
__version__ = '0.1.0-unknown'


class Widgets(param.ParameterizedFunction):
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
from distutils.core import setup

setup_args = {}
install_requires = ['param>=1.5.1', 'bokeh>=0.12.5']
install_requires = ['param>=1.5.1', 'bokeh>=0.12.6']

setup_args.update(dict(
name='parambokeh',
version="0.0.1",
version="0.1.0",
install_requires = install_requires,
url = 'https://github.com/ioam/parambokeh',
description='Generate bokeh widgets from Parameterized objects on bokeh server',
description='ParamBokeh provides an easy way to generate a UI for param based classes in the notebook or on bokeh server.',
long_description=open('README.rst').read() if os.path.isfile('README.rst') else 'Consult README.rst',
author= "IOAM",
author_email= "[email protected]",
Expand Down

0 comments on commit bf79fda

Please sign in to comment.