Skip to content

Commit

Permalink
Upgraded pandas back to 2.2.0, relaxed python requirements to >= 3.9 …
Browse files Browse the repository at this point in the history
…with a python-version matrix.
  • Loading branch information
tinavisnovska committed Feb 27, 2024
1 parent 0c22771 commit c731f16
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,32 @@ jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
-
name: Check out the repo
uses: actions/checkout@v4
-
name: Unit testing
uses: fylein/python-pytest-github-action@v2
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
args: pip3 install -r requirements.txt && pytest
python-version: ${{ matrix.python-version }}
-
name: Install dependencies
run: pip3 install pytest pytest-md pytest-emoji && pip3 install -r requirements.txt
-
name: Unit testing
uses: pavelzw/pytest-action@v2
with:
emoji: false
verbose: false
job-summary: true


build:
name: Build Image
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Running LocalApp analysis requires a samplesheet in a specific format consistent

## Dependencies

- python3>=3.11.4,
- pandas>=2.2.0
- python3>=3.9,
- pandas==2.2.0


## Description of Input Parameters
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pandas==1.3.5
pandas==2.2.0

0 comments on commit c731f16

Please sign in to comment.