Skip to content

Commit f628e94

Browse files
committed
Merge branch 'master' of https://github.com/plotly/plotly.py
2 parents 8ed1ecc + d191458 commit f628e94

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

contributing.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ the structure of the code and of the repository.
6464
https://github.com/plotly/plotly.py/issues/1965. If you have writing skills,
6565
the wording of existing examples can also be improved in places.
6666

67-
Contributing code or documentation are not the only way to contribute! You can
67+
Contributing code or documentation is not the only way to contribute! You can
6868
also contribute to the project by
6969

7070
- reporting bugs (see below).
@@ -151,7 +151,12 @@ complete installation and avoid gdal-config errors.
151151
```
152152
This will ensure that the installed packages links to your local development
153153
directory, meaning that all changes you make reflect directly in your
154-
environment (don't forget to restart the Jupyter kernel though!).
154+
environment (don't forget to restart the Jupyter kernel though!). For more
155+
information see the
156+
[`setuptools`](https://setuptools.readthedocs.io/en/latest/setuptools.html#development-mode)
157+
and
158+
[`pip`](https://pip.pypa.io/en/stable/reference/pip_install/#install-editable)
159+
documentation on _development mode_.
155160

156161
### ipywidgets development install
157162

packages/python/plotly/optional-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ psutil
2525

2626
## code formatting
2727
pre-commit
28+
black
2829

2930
## codegen dependencies ##
3031
inflect

packages/python/plotly/plotly/__init__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
colors,
4040
io,
4141
data,
42-
colors,
4342
)
4443
from plotly.version import __version__
4544

@@ -51,7 +50,6 @@
5150
"colors",
5251
"io",
5352
"data",
54-
"colors",
5553
"__version__",
5654
]
5755

@@ -71,7 +69,6 @@
7169
".colors",
7270
".io",
7371
".data",
74-
".colors",
7572
],
7673
[".version.__version__"],
7774
)

0 commit comments

Comments
 (0)