From 239170ec2818898156105b0e9606efa42a4ff0df Mon Sep 17 00:00:00 2001 From: Paul Natsuo Kishimoto Date: Wed, 2 Nov 2022 10:26:50 +0100 Subject: [PATCH] Work around #463 in "pytest" CI workflow --- .github/workflows/pytest.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 46200d49a..66452213b 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -87,7 +87,10 @@ jobs: run: python -m pip install --upgrade pip wheel setuptools-scm - name: Install Python package and dependencies - run: pip install .[tests] + run: | + pip install .[tests] + # TEMPORARY work around iiasa/ixmp#463 + pip install "JPype1 != 1.4.1" - name: Install R dependencies and tutorial requirements run: |