Skip to content

Commit

Permalink
Don't downgrade JPype for Python 3.11 in "pytest" CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed May 3, 2023
1 parent 26e326e commit e698c04
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,13 @@ jobs:
- name: Install Python package and dependencies
run: |
pip install .[tests]
# commented: use with "pandas-version" in the matrix, above
# pip install --upgrade pandas${{ matrix.pandas-version }}
# TEMPORARY work around iiasa/ixmp#463
pip install "JPype1 != 1.4.1"
- name: TEMPORARY Work around iiasa/ixmp#463
if: matrix.os.python-version != "3.11"
run: pip install "JPype1 != 1.4.1"

- name: Install R dependencies and tutorial requirements
run: |
Expand Down

0 comments on commit e698c04

Please sign in to comment.