Skip to content

Commit

Permalink
added pandas 1.5rc to requirements.txt for now, updates CI pipelines …
Browse files Browse the repository at this point in the history
…with pandas rc too
  • Loading branch information
kushalkolar committed Aug 26, 2022
1 parent 30afdc8 commit 75d58e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 18 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/conda-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
branches: [ master ]

jobs:
example-6:
name: Ex6 Mamba
build:
name: windows conda
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v2
Expand All @@ -35,7 +35,6 @@ jobs:
conda activate mescore
mamba install pytest
caimanmanager.py install
pip install https://pypi.anaconda.org/scipy-wheels-nightly/simple/pandas/1.5.0.dev0%2B1172.ga7c5773d19/pandas-1.5.0.dev0%2B1172.ga7c5773d19-cp39-cp39-win_amd64.whl
pip install "pandas==1.5.0rc0"
pip install .
DOWNLOAD_GROUND_TRUTHS=1 pytest -s .
12 changes: 2 additions & 10 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python application
name: Linux pip

on:
pull_request:
Expand Down Expand Up @@ -29,8 +29,6 @@ jobs:
- name: Install deps
run: |
python -m pip install --upgrade pip setuptools wheel
echo "*************** Path during install deps ***************"
echo $PWD
- name: install caiman
run: |
Expand All @@ -40,19 +38,13 @@ jobs:
pip install -r requirements.txt
pip install .
caimanmanager.py install
echo "*************** Path during install caiman ***************"
echo $PWD
- name: Install mesmerize-core
run: |
echo "*************** Path during install mesmerize ***************"
echo $PWD
pip install -r requirements.txt
pip install git+https://github.com/pandas-dev/pandas.git
pip install pytest
pip install .
- name: Test with pytest
run: |
DOWNLOAD_GROUND_TRUTHS=1 pytest -s .
5 changes: 2 additions & 3 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python Package using Conda
name: Linux Conda

on:
pull_request:
Expand Down Expand Up @@ -38,11 +38,10 @@ jobs:
run: |
mamba env update -n base --file environment.yml
caimanmanager.py install
pip install git+https://github.com/pandas-dev/pandas.git
pip install "pandas==1.5.0rc0"
pip install .
- name: Test with pytest
run: |
mamba install pytest
DOWNLOAD_GROUND_TRUTHS=1 pytest -s .
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pandas
pandas==1.5.0rc0
pytest
requests
tqdm
Expand Down

0 comments on commit 75d58e0

Please sign in to comment.