Skip to content

Commit

Permalink
Merge pull request #29 from sanjaynagi/allow-python3.10-17-04-23
Browse files Browse the repository at this point in the history
Allow python 3.10 and 3.11 and test in CI
  • Loading branch information
sanjaynagi authored Apr 17, 2023
2 parents 9d13641 + 563e14b commit 0015c4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/github-action-anoexpress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ on: [push]

jobs:
run:
strategy:
fail-fast: true
matrix:
python-version: ['3.7', '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: ${{ matrix.python-version }}
- run: python3 -m pip install anoexpress malariagen_data nbformat ipykernel papermill nbconvert
- run: python -m ipykernel install --user --name anoexpress
- run: papermill workflow/notebooks/plot-gene-expression.ipynb ci.ipynb -k anoexpress
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ packages = [
license = "MIT"

[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
python = ">=3.7.1"
malariagen_data = "*"
pandas = [
{version="<1.4", python=">=3.7.1,<3.8"},
Expand Down

0 comments on commit 0015c4c

Please sign in to comment.