From c052bc68be6c7df81e80de41895a261edc9fe273 Mon Sep 17 00:00:00 2001 From: Tyler Reddy Date: Sun, 13 Mar 2022 12:30:25 -0600 Subject: [PATCH] TST: unpin pytest in CI * `pytest` `7.1.0` was just released: https://github.com/pytest-dev/pytest/releases/tag/7.1.0 * release notes indicate: ``` Fixed regression where --import-mode=importlib used together with PYTHONPATH{.interpreted-text role="envvar"} or pythonpath{.interpreted-text role="confval"} would cause import errors in test suites. ``` * so try unpinning the `pytest` version we use in CI --- .github/workflows/main_ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index 0d45057..169a41a 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -36,8 +36,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - # pytest is pinned because of gh-24 - python -m pip install --upgrade 'pytest==6.2.5' + python -m pip install --upgrade pytest python -m pip install --upgrade lxml # matplotlib is pinned because of # gh-479