Skip to content

Update web3 requirement from ^6.18.0 to >=6.18,<8.0 #24

Update web3 requirement from ^6.18.0 to >=6.18,<8.0

Update web3 requirement from ^6.18.0 to >=6.18,<8.0 #24

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
strategy:
max-parallel: 4
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.python-version == '3.12' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: |
poetry run pytest