Skip to content

Commit

Permalink
build: adding python3.11 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Mar 23, 2024
1 parent fcbc1e7 commit c318ea7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,13 @@ jobs:
with:
node-version: ${{ env.NODE_VER }}
- name: Install Dependencies
run: make requirements
run:
make requirements
if [ "${{ matrix.python-version }}" == "3.8" ]; then
pip install pyyaml<6.0
elif [ "${{ matrix.python-version }}" == "3.11" ]; then
pip install pyyaml>6.0
fi
- name: Install Firefox
run: |
sudo apt-get update
Expand Down

0 comments on commit c318ea7

Please sign in to comment.