1.6.5.post: fix * in dependency versions
#47919
This file contains hidden or 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: Code check | |
| on: # Trigger the workflow on push or pull request, but only for the master branch | |
| push: | |
| branches: [master, "release/*"] | |
| pull_request: | |
| branches: [master, "release/*"] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }} | |
| cancel-in-progress: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }} | |
| jobs: | |
| mypy: | |
| runs-on: ubuntu-20.04 | |
| #strategy: | |
| # fail-fast: false | |
| # matrix: | |
| # include: | |
| # - {python-version: "3.8", pytorch-version: "1.8"} | |
| # - {python-version: "3.9", pytorch-version: "1.10"} | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-python@v2 | |
| with: | |
| # python-version: ${{ matrix.python-version }} | |
| python-version: 3.9 | |
| # Note: This uses an internal pip API and may not always work | |
| # https://github.com/actions/cache/blob/master/examples.md#multiple-oss-in-a-workflow | |
| - name: Cache pip | |
| uses: actions/cache@v2 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('requirements/base.txt') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pip- | |
| - name: Install dependencies | |
| env: | |
| # TORCH_VERSION: ${{ matrix.pytorch-version }} | |
| TORCH_VERSION: "1.10" | |
| run: | | |
| pip install "torch==$TORCH_VERSION" --find-links https://download.pytorch.org/whl/cpu/torch_stable.html | |
| # adjust versions according installed Torch version | |
| python ./requirements/adjust-versions.py requirements/extra.txt | |
| python ./requirements/adjust-versions.py requirements/examples.txt | |
| pip install '.[dev]' --upgrade-strategy only-if-needed --find-links https://download.pytorch.org/whl/cpu/torch_stable.html | |
| pip list | |
| - name: Type check | |
| run: mypy --install-types --non-interactive |