From cc951f1a4aa34a4c5e08ab307ca64757814adc8a Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Tue, 4 Nov 2014 17:16:04 -0500 Subject: [PATCH 1/5] version bump --> 1.3.2 (flexible sign in) --- plotly/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly/version.py b/plotly/version.py index 72837bdc785..e39833240e8 100644 --- a/plotly/version.py +++ b/plotly/version.py @@ -1 +1 @@ -__version__ = '1.3.1' +__version__ = '1.3.2' From f8855cb11978c4a150c1968989c2af0dcab963b4 Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Wed, 5 Nov 2014 09:57:35 -0500 Subject: [PATCH 2/5] Add initial .yaml file for binstar --- plotly/meta.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 plotly/meta.yaml diff --git a/plotly/meta.yaml b/plotly/meta.yaml new file mode 100644 index 00000000000..3e42b893d96 --- /dev/null +++ b/plotly/meta.yaml @@ -0,0 +1,26 @@ +package: + name: plotly + version: "1.3.2" + +source: + git_url: git@github.com:plotly/python-api.git + +build: + number: 1 + script: python setup.py install + +requirements: + build: + - python + - setuptools + - requests + - six + run: + - python + - setuptools + - requests + - six + +about: + home: https://plot.ly + license: MIT From d10a7e4ff9dd8ae72e56460dd3a2e664cb083795 Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Thu, 6 Nov 2014 17:07:40 -0500 Subject: [PATCH 3/5] update meta.yaml. --- plotly/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plotly/meta.yaml b/plotly/meta.yaml index 3e42b893d96..ba805b5b029 100644 --- a/plotly/meta.yaml +++ b/plotly/meta.yaml @@ -6,8 +6,7 @@ source: git_url: git@github.com:plotly/python-api.git build: - number: 1 - script: python setup.py install + number: 0 requirements: build: @@ -24,3 +23,4 @@ requirements: about: home: https://plot.ly license: MIT + summary: Python plotting library for collaborative, interactive, publication-quality graphs. From f0b747c0aed5c2a8e92d66c308f3aa242bdd28a1 Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Thu, 6 Nov 2014 17:15:25 -0500 Subject: [PATCH 4/5] Break out install script into windows and unixy versions. --- plotly/bld.bat | 1 + plotly/build.sh | 1 + 2 files changed, 2 insertions(+) create mode 100644 plotly/bld.bat create mode 100644 plotly/build.sh diff --git a/plotly/bld.bat b/plotly/bld.bat new file mode 100644 index 00000000000..a20ebab24f7 --- /dev/null +++ b/plotly/bld.bat @@ -0,0 +1 @@ +setup.py install diff --git a/plotly/build.sh b/plotly/build.sh new file mode 100644 index 00000000000..762d43b4007 --- /dev/null +++ b/plotly/build.sh @@ -0,0 +1 @@ +python setup.py install From 615eb0fc7b7668acf3b46b337d3f38e5c0ce4a99 Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Thu, 6 Nov 2014 18:53:09 -0500 Subject: [PATCH 5/5] update windows install and use public github link as source. --- plotly/bld.bat | 2 +- plotly/meta.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plotly/bld.bat b/plotly/bld.bat index a20ebab24f7..762d43b4007 100644 --- a/plotly/bld.bat +++ b/plotly/bld.bat @@ -1 +1 @@ -setup.py install +python setup.py install diff --git a/plotly/meta.yaml b/plotly/meta.yaml index ba805b5b029..af0e200eac2 100644 --- a/plotly/meta.yaml +++ b/plotly/meta.yaml @@ -3,7 +3,7 @@ package: version: "1.3.2" source: - git_url: git@github.com:plotly/python-api.git + git_url: https://github.com/plotly/python-api build: number: 0