From 9fac6849a305bccd84c71475d6f4090df0a833ad Mon Sep 17 00:00:00 2001 From: maniarathi Date: Mon, 14 Sep 2020 17:19:24 -0700 Subject: [PATCH] Fix import of anndata from master so that there aren't issues with scanpy version checking. (#1834) --- .github/workflows/compatibility_tests.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/compatibility_tests.yml b/.github/workflows/compatibility_tests.yml index 11c9d0cd..bd3c41e8 100644 --- a/.github/workflows/compatibility_tests.yml +++ b/.github/workflows/compatibility_tests.yml @@ -67,11 +67,6 @@ jobs: uses: actions/checkout@v2 with: path: cellxgene - - name: Checkout tools repo - uses: actions/checkout@v2 - with: - repository: theislab/anndata - path: anndata - name: Install dependencies run: | cd cellxgene @@ -82,7 +77,7 @@ jobs: # 2. install cellxgene pip install --upgrade cellxgene # 3. install anndata - cd ../anndata && pip install -e . + pip install git+https://github.com/theislab/anndata - name: Tests run: cd cellxgene && make unit-test ${{ matrix.test-suite }} @@ -102,17 +97,11 @@ jobs: uses: actions/checkout@v2 with: path: cellxgene - - name: Checkout tools repo - uses: actions/checkout@v2 - with: - repository: theislab/anndata - path: anndata - name: Install dependencies run: | cd cellxgene sed -i -E 's/^anndata[>=]=[0-9]+.[0-9]+.[0-9]+$/anndata/g' server/requirements.txt make pydist install-dist dev-env - cd ../anndata - pip install -e . + pip install git+https://github.com/theislab/anndata - name: Tests run: cd cellxgene && make unit-test ${{ matrix.test-suite }}