Skip to content

Commit 25683ec

Browse files
author
Kevin Yan
authored
Merge pull request #516 from plotly/update_dependencies
Update dependencies
2 parents a1c0a9c + b826d81 commit 25683ec

File tree

6 files changed

+240
-129
lines changed

6 files changed

+240
-129
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.12.3] - 2016-06-30
6+
### Updated
7+
- Updated `plotly.min.js` from 1.13.0 to 1.14.1
8+
- Numerous additions and changes where made to the mapbox layout layers attributes
9+
- Attribute line.color in scatter3d traces now support color scales
10+
- Layout shapes can now be moved and resized (except for 'path' shapes) in editable contexts
11+
- See [the plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1141----2016-06-28) for additional information regarding the updates
12+
- Added `update_plotlyjs_for_offline` in makefile in order to automate updating `plotly.min.js` for offline mode
13+
- Updated `default-schema`
14+
15+
516
## [1.12.2] - 2016-06-20
617
### Updated
718
- Updated plotly.min.js so the offline mode is using plotly.js v1.13.0

makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,16 @@ pull_chunked : submodules/chunked_requests
5757
@echo ""
5858
@echo "Pulling down updates from chunked_requests"
5959
cd submodules/chunked_requests; git pull origin master
60+
61+
update_plotlyjs_for_offline :
62+
@echo "Updating plotly.js for Offline Mode"
63+
@echo "------------------"
64+
python -c "import urllib2;\
65+
cdn_url = 'https://cdn.plot.ly/plotly-latest.min.js';\
66+
response = urllib2.urlopen(cdn_url);\
67+
html = response.read();\
68+
f = open('./plotly/offline/plotly.min.js', 'w');\
69+
f.write(html);\
70+
f.close()"
71+
@echo "---------------------------------"
72+
@echo "Remember to update the CHANGELOG!"

optional-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ pandas
2222

2323
## scipy deps for some FigureFactory functions ##
2424
scipy
25+

0 commit comments

Comments
 (0)