Skip to content

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

Merged
merged 5 commits into from
Mar 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.0.3] - 2017-03-06
## [2.0.5] - 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.4] - 2017-03-07 [YANKED]
Note: This release's installation was broken. It has been removed from PyPI
## Added
- Added `dashboard_objs` to top level import.

## [2.0.3] - 2017-03-06 [YANKED]
Note: This release's installation was broken. It has been removed from PyPI
## 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.

Expand Down
10 changes: 10 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The 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"
Binary file removed dist/plotly-0.5.6.tar.gz
Binary file not shown.
39 changes: 0 additions & 39 deletions dist/plotly-0.5.8 2/PKG-INFO

This file was deleted.

25 changes: 0 additions & 25 deletions dist/plotly-0.5.8 2/README.txt

This file was deleted.

3 changes: 0 additions & 3 deletions dist/plotly-0.5.8 2/plotly/__init__.py

This file was deleted.

237 changes: 0 additions & 237 deletions dist/plotly-0.5.8 2/plotly/plotly.py

This file was deleted.

1 change: 0 additions & 1 deletion dist/plotly-0.5.8 2/plotly/version.py

This file was deleted.

5 changes: 0 additions & 5 deletions dist/plotly-0.5.8 2/setup.cfg

This file was deleted.

26 changes: 0 additions & 26 deletions dist/plotly-0.5.8 2/setup.py

This file was deleted.

Loading