bump webpack-clip to 5 and improve heatmaps by normalizing them #24
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
name: Typing Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Run mypy | |
run: | | |
python -m pip install -r requirements_typing.txt | |
git submodule init | |
git submodule update --remote --merge | |
cd progressivis | |
git submodule init | |
git submodule update --remote --merge | |
python -m pip install . | |
cd .. | |
mypy --strict ipyprogressivis/ |