Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
fail-fast: false
matrix:
python: ["3.12", "3.13"]
is_pre: [true, false]
package:
# extras should be a comma seperated list of strings, like `extras: "lazy,accelerated"`
# The 'test' extra is always installed
Expand All @@ -31,6 +32,8 @@ jobs:
- {name: "pertpy", extras: "de"}
- {name: "decoupler", extras: ""}
- {name: "SnapATAC2", extras: ""}
exclude:
- { python: 3.12, is_pre: true }

defaults:
run:
Expand Down Expand Up @@ -89,7 +92,7 @@ jobs:
EXTRAS="test"
fi
fi
uv pip install --compile --system ".[$EXTRAS]" git+https://github.com/scverse/anndata -c ../integration-testing/constraints.txt $GROUP -v
uv pip install ${{ matrix.is_pre && '--prerelease allow' || '' }} --compile --system ".[$EXTRAS]" git+https://github.com/scverse/anndata -c ../integration-testing/constraints.txt ${{ matrix.is_pre && '--override ../integration-testing/overrides.txt' || ''}} $GROUP -v
working-directory: ${{ matrix.package.name }}

- name: Set failure type for install
Expand Down
1 change: 1 addition & 0 deletions overrides.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pandas>=3
Loading