-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
test and fix master #709
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test and fix master #709
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/). | |
|
||
## [Unreleased] | ||
|
||
## [2.0.3] - 2017-03-06 | ||
## [2.0.4] - 2017-03-07 | ||
## Fixed | ||
- `import plotly` was broken in `2.0.3` and `2.0.2` because the new `dashboard_objs` wasn't included in our `setup.py`'s "`packages`". Now it is and `import plotly` and the other features introduced in `2.0.3` and `2.0.2` should work. | ||
|
||
## [2.0.3] - 2017-03-06 [YANKED] | ||
## Added | ||
- Dashboards can now be created using the API and uploaded to Plotly. Use `import plotly.dashboard_objs` to create a `Dashboard` object. You can learn more about `Dashboard` objects by running `help(plotly.dashboard_objs)` and `help(plotly.plotly.plotly.dashboard_ops)` for uploading and retrieving dashboards from the cloud. | ||
|
||
|
||
## [2.0.2] - 2017-02-20 | ||
## [2.0.2] - 2017-02-20 [YANKED] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2.0.2 was the last stable version 2.0.3 and 2.0.4 were yanked and we'll need to release 2.0.5 |
||
### Fixed | ||
- Offline plots created with `plotly.offline.plot` now resize as expected when the window is resized. | ||
- `plotly.figure_factory.create_distplot` now can support more than 10 traces without raising an error. Updated so that if the list of `colors` (default colors too) is less than your number of traces, the color for your traces will loop around to start when it hits the end. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,3 +58,13 @@ test: | |
# since optional requirements is part of the test suite, we don't need to | ||
# worry about testing that it *can* be imported in this case. | ||
- $(! python -c "import plotly.figure_factory") | ||
|
||
# test the distribution and a basic import | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 good idea |
||
- rm -rf dist/ && | ||
python setup.py sdist && | ||
mkdir test_install && | ||
cd test_install && | ||
virtualenv venv && | ||
source venv/bin/activate && | ||
pip install ../dist/* && | ||
python -c "import plotly" |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so this should be 2.0.5