From 1a65d41b90b9d3cb78f98ce1efbf5e6c1e3febc2 Mon Sep 17 00:00:00 2001 From: David Maxson Date: Mon, 20 Nov 2023 17:00:08 -0800 Subject: [PATCH] [WIP] Started converting to pydantic 2 --- .github/workflows/pytest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 1cf0dad..e91e73b 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -8,17 +8,17 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10' ] + python-version: [ '3.8', '3.9', '3.10' ] name: Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: ${{ matrix.python-version }} cache: 'pip' - name: Install dependencies run: | - python -m pip install --upgrade pip + pip install pendulum pip install -r requirements.txt - name: Test with pytest run: |