Skip to content

Commit 4b45341

Browse files
authored
Merge pull request #709 from plotly/test-install
test and fix master
2 parents 3b827f4 + b5f64b2 commit 4b45341

26 files changed

+24
-985
lines changed

Diff for: CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7-
## [2.0.3] - 2017-03-06
7+
## [2.0.5] - 2017-03-07
8+
## Fixed
9+
- `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.
10+
11+
## [2.0.4] - 2017-03-07 [YANKED]
12+
Note: This release's installation was broken. It has been removed from PyPI
13+
## Added
14+
- Added `dashboard_objs` to top level import.
15+
16+
## [2.0.3] - 2017-03-06 [YANKED]
17+
Note: This release's installation was broken. It has been removed from PyPI
818
## Added
919
- 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.
1020

Diff for: circle.yml

+10
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,13 @@ test:
5858
# since optional requirements is part of the test suite, we don't need to
5959
# worry about testing that it *can* be imported in this case.
6060
- $(! python -c "import plotly.figure_factory")
61+
62+
# test the distribution and a basic import
63+
- rm -rf dist/ &&
64+
python setup.py sdist &&
65+
mkdir test_install &&
66+
cd test_install &&
67+
virtualenv venv &&
68+
source venv/bin/activate &&
69+
pip install ../dist/* &&
70+
python -c "import plotly"

Diff for: dist/plotly-0.5.6.tar.gz

-2.91 KB
Binary file not shown.

Diff for: dist/plotly-0.5.8 2/PKG-INFO

-39
This file was deleted.

Diff for: dist/plotly-0.5.8 2/README.txt

-25
This file was deleted.

Diff for: dist/plotly-0.5.8 2/plotly/__init__.py

-3
This file was deleted.

Diff for: dist/plotly-0.5.8 2/plotly/plotly.py

-237
This file was deleted.

Diff for: dist/plotly-0.5.8 2/plotly/version.py

-1
This file was deleted.

Diff for: dist/plotly-0.5.8 2/setup.cfg

-5
This file was deleted.

Diff for: dist/plotly-0.5.8 2/setup.py

-26
This file was deleted.

0 commit comments

Comments
 (0)