Skip to content

Commit

Permalink
Update versions tested and package installation in LTS compat tests (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ivirshup authored Jan 10, 2025
1 parent aa51fcb commit 7f617e3
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/lts-compat-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
census-build-version: # Add additional LTS releases as they occur
- "latest"
- "stable"
- "2024-07-01"
- "2023-12-15"
- "2023-07-25"
- "2023-05-15"
py-pkg-version:
- "~=1.10.0"
- "~=1.11.0"
- "~=1.12.0"
- "~=1.13.0"
- "~=1.14.0"
- "~=1.15.0"
- "~=1.16.0"
- "head-of-main"

runs-on: ${{matrix.os}}
Expand All @@ -43,12 +43,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip setuptools wheel
GIT_CLONE_PROTECTION_ACTIVE=false pip install -r ./api/python/cellxgene_census/scripts/requirements-dev.txt
if [ ${{matrix.py-pkg-version}} == "head-of-main" ]; then
pip install -e ./api/python/cellxgene_census/
pip install -e ./api/python/cellxgene_census/ -r ./api/python/cellxgene_census/scripts/requirements-dev.txt
else
pip install -U cellxgene_census${{ matrix.py-pkg-version }}
pip install -U cellxgene_census${{ matrix.py-pkg-version }} -r ./api/python/cellxgene_census/scripts/requirements-dev.txt
fi
- name: Test with pytest (API, main tests)
Expand Down

0 comments on commit 7f617e3

Please sign in to comment.