Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
fcurella committed Jun 25, 2024
1 parent 30fde5c commit e7bd02a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
pydantic-version: ["<2", ">=2"]
pydantic-version: ["pydantic<2", "pydantic>=2"]

steps:
- uses: actions/checkout@v3
Expand All @@ -40,7 +40,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -e .
python -m pip install pydantic${{ matrix.pydantic-version }}
python -m pip install "${{ matrix.pydantic-version }}"
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test
run: |
Expand Down

0 comments on commit e7bd02a

Please sign in to comment.