summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2021-02-27 16:58:02 -0500
committerengn33r <engn33r@users.noreply.github.com>2021-02-27 16:58:02 -0500
commit67ea7a34accbbd3e767a984ef441fcb2fa646809 (patch)
tree7d52a78a6c0b80e863affb52bd8183e345a1eca5
parentf3ffce3321c553f1f4f051a76d3e644c3e8f03b9 (diff)
downloadwebsocket-client-67ea7a34accbbd3e767a984ef441fcb2fa646809.tar.gz
Add logic for Python 3.4 readme_renderer case
-rw-r--r--.github/workflows/build.yml6
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