diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7802f470..52940080 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,7 +35,7 @@ jobs: - uses: snok/install-poetry@v1.3 with: virtualenvs-in-project: true - version: 1.5.1 # Poetry 1.6+ isn't compatible with python 3.7 + version: 1.7.1 # Start integration test databases - uses: supercharge/mongodb-github-action@1.3.0 diff --git a/noxfile.py b/noxfile.py index 395a6f67..f0ecd84f 100644 --- a/noxfile.py +++ b/noxfile.py @@ -28,7 +28,7 @@ XDIST_ARGS = '--numprocesses=auto --dist=loadfile' # Run tests in parallel, grouped by test module -@session(python=['3.7', '3.8', '3.9', '3.10', '3.11']) +@session(python=['3.8', '3.9', '3.10', '3.11']) def test(session): """Run tests for a specific python version""" test_paths = session.posargs or [UNIT_TESTS]