From bf79fda59e587f05e928baec8ed10e939da4b8e8 Mon Sep 17 00:00:00 2001
From: Philipp Rudiger
Date: Thu, 13 Jul 2017 07:36:50 -0500
Subject: [PATCH] Updated versions to 0.1.0 for first release
---
conda.recipe/README.md | 4 ++--
conda.recipe/meta.yaml | 19 ++++++-------------
parambokeh/__init__.py | 4 ++--
setup.py | 6 +++---
4 files changed, 13 insertions(+), 20 deletions(-)
diff --git a/conda.recipe/README.md b/conda.recipe/README.md
index f751e06..65e8d1a 100644
--- a/conda.recipe/README.md
+++ b/conda.recipe/README.md
@@ -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
diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml
index 499e9c2..d191174 100644
--- a/conda.recipe/meta.yaml
+++ b/conda.recipe/meta.yaml
@@ -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
diff --git a/parambokeh/__init__.py b/parambokeh/__init__.py
index 53deaf1..63a4758 100644
--- a/parambokeh/__init__.py
+++ b/parambokeh/__init__.py
@@ -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):
diff --git a/setup.py b/setup.py
index 05f7a4c..7261096 100644
--- a/setup.py
+++ b/setup.py
@@ -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= "holoviews@gmail.com",