-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into fix-spelling
- Loading branch information
Showing
29 changed files
with
899 additions
and
1,200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
from .dash import Dash, no_update # noqa: F401 | ||
from . import dependencies # noqa: F401 | ||
from . import development # noqa: F401 | ||
from . import exceptions # noqa: F401 | ||
from . import resources # noqa: F401 | ||
from .version import __version__ # noqa: F401 | ||
from ._callback_context import callback_context # noqa: F401 | ||
# pylint: disable=C0413 | ||
# __plotly_dash is for the "make sure you don't have a dash.py" check | ||
# must come before any other imports. | ||
__plotly_dash = True | ||
from .dash import Dash, no_update # noqa: F401,E402 | ||
from . import dependencies # noqa: F401,E402 | ||
from . import development # noqa: F401,E402 | ||
from . import exceptions # noqa: F401,E402 | ||
from . import resources # noqa: F401,E402 | ||
from .version import __version__ # noqa: F401,E402 | ||
from ._callback_context import callback_context # noqa: F401,E402 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.18.0" | ||
__version__ = "1.18.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
dash_flow_example==0.0.5 | ||
dash-dangerously-set-inner-html | ||
isort==4.3.21 | ||
mock==4.0.1;python_version>="3.0" | ||
isort==4.3.21;python_version<"3.7" | ||
mock==4.0.3;python_version>="3.0" | ||
mock==3.0.5;python_version=="2.7" | ||
flake8==3.7.9 | ||
PyYAML==5.3 | ||
pylint==1.9.4;python_version<"3.7" | ||
pylint==2.3.1;python_version=="3.7" | ||
astroid==2.2.5;python_version=="3.7" | ||
flake8==3.8.4 | ||
PyYAML==5.3.1 | ||
pylint==1.9.5;python_version<"3.7" | ||
pylint==2.6.0;python_version>="3.7" | ||
astroid==2.4.2;python_version>="3.7" | ||
black==19.10b0;python_version>="3.0" | ||
virtualenv==20.0.10;python_version=="2.7" | ||
fire==0.2.1 | ||
coloredlogs==14.0 | ||
virtualenv==20.2.2;python_version=="2.7" | ||
fire==0.3.1 | ||
coloredlogs==15.0 | ||
flask-talisman==0.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Flask>=1.0.2 | ||
Flask>=1.0.4 | ||
flask-compress | ||
plotly | ||
dash_renderer==1.8.3 | ||
dash-core-components==1.14.0 | ||
dash-core-components==1.14.1 | ||
dash-html-components==1.1.1 | ||
dash-table==4.11.1 | ||
future |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
pytest==6.0.1;python_version>="3.0" | ||
pytest==4.6.9;python_version=="2.7" | ||
pytest-sugar==0.9.4 | ||
pytest-mock==3.2.0;python_version>="3.0" | ||
pytest-mock==2.0.0;python_version=="2.7" | ||
lxml==4.6.1 | ||
selenium==3.141.0 | ||
percy==2.0.2 | ||
cryptography==3.0 | ||
requests[security]==2.21.0 | ||
beautifulsoup4==4.8.2 | ||
waitress==1.4.3 | ||
flask-talisman==0.7.0 | ||
pytest>=6.0.2;python_version>="3.0" | ||
pytest>=4.6,<5;python_version=="2.7" | ||
pytest-sugar>=0.9.4 | ||
pytest-mock>=3.2.0;python_version>="3.0" | ||
pytest-mock>=2.0.0,<3;python_version=="2.7" | ||
lxml>=4.6.2 | ||
selenium>=3.141.0 | ||
percy>=2.0.2 | ||
requests[security]>=2.21.0 | ||
beautifulsoup4>=4.8.2,<=4.9.3;python_version=="2.7" | ||
beautifulsoup4>=4.8.2;python_version>="3.0" | ||
waitress>=1.4.4 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.