From 1c342ee027a37e640262142b4fcd03b035ab3a9b Mon Sep 17 00:00:00 2001 From: pwwang Date: Thu, 13 Oct 2022 12:20:57 -0700 Subject: [PATCH] Fix CI --- .github/workflows/build.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41fbaf72..aa6a66a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,9 @@ jobs: # pandas==1.2.0, pandas==1.3.0, pandas==1.4.0, - pandas # lastest + # need to skip 1.5.0 because of pandas-dev/pandas#48645 + pandas<1.5.0, + # pandas # lastest ] exclude: - python-version: 3.7 @@ -40,7 +42,7 @@ jobs: poetry config virtualenvs.create false poetry install -E scipy -E wcwidth -E slugify -v # reinstall pandas to specific version - pip install -U $PANDAS + pip install "$PANDAS" env: PANDAS: ${{ matrix.pandas }} - name: Run flake8 @@ -73,7 +75,8 @@ jobs: python-version: [3.7, 3.8, 3.9] modin: [ modin==0.10.2, - modin # lastest + modin<0.16.0, # 0.16 uses pandas 1.5.0 + # modin # lastest ] exclude: - python-version: 3.7 @@ -93,7 +96,7 @@ jobs: poetry config virtualenvs.create false poetry install -E modin -E scipy -E wcwidth -E slugify -v # reinstall modin to specific version - pip install -U $MODIN + pip install "$MODIN" env: MODIN: ${{ matrix.modin }} - name: Show versions