-
-
Notifications
You must be signed in to change notification settings - Fork 191
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
IE11 compatibility #437
IE11 compatibility #437
Conversation
- es5 check - build artifacts
# Conflicts: # dash_bio/bundle.js # package-lock.json
- changelog - rebuild
@@ -69,7 +69,7 @@ jobs: | |||
- run: echo $PYVERSION > ver.txt | |||
|
|||
- restore_cache: | |||
key: deps1-{{ .Branch }}-{{ checksum "tests/requirements.txt" }}-{{ checksum "ver.txt" }} | |||
key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}-{{ checksum "tests/requirements.txt" }}-{{ checksum "ver.txt" }} |
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.
The dash version is in requirements.txt
, updating this file during a PR causes the cache not to be updated and the changes not to be reflected in the build environment. Adding.
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.
💃
Related to plotly/dash#1006