Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mvadari committed Oct 25, 2023
1 parent 226eb20 commit 3c05f60
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ env:
jobs:
test:
name: Test
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
# we have to use 3.7.1 to get around openssl issues
# TODO: add 3.7 once xrpl-py has been updated
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
fail-fast: false

steps:
Expand All @@ -45,7 +43,7 @@ jobs:
- name: Install Python + Retrieve Poetry dependencies from cache
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
python-version: ${{ matrix.python-version }}
cache: "poetry"

- name: Display Python version
Expand Down

0 comments on commit 3c05f60

Please sign in to comment.