diff options
| author | engn33r <engn33r@users.noreply.github.com> | 2021-02-27 16:58:02 -0500 |
|---|---|---|
| committer | engn33r <engn33r@users.noreply.github.com> | 2021-02-27 16:58:02 -0500 |
| commit | 67ea7a34accbbd3e767a984ef441fcb2fa646809 (patch) | |
| tree | 7d52a78a6c0b80e863affb52bd8183e345a1eca5 | |
| parent | f3ffce3321c553f1f4f051a76d3e644c3e8f03b9 (diff) | |
| download | websocket-client-67ea7a34accbbd3e767a984ef441fcb2fa646809.tar.gz | |
Add logic for Python 3.4 readme_renderer case
| -rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d5a4990..0387a0b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,12 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + - name: Install version 24.0 readme_renderer if Python version == 3.4 + if: ${{ matrix.python-version == "3.4" }} + run: pip install readme_renderer==24.0 + - name: Install latest readme_renderer if Python version != 3.4 + if: ${{ matrix.python-version != "3.4" }} + run: pip install -U readme_renderer - name: Build websocket-client & run tests run: | pip install -U pip setuptools wheel twine six pytest |
