Skip to content

Commit

Permalink
Merge branch 'fix-pip-build-problem' of https://github.com/cedadev/nappy
Browse files Browse the repository at this point in the history
 into fix-pip-build-problem
  • Loading branch information
agstephens committed Feb 6, 2024
2 parents 0a162c5 + a9d258f commit 4f11638
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10, 3.11]
python-version: [3.8, 3.9, "3.10", 3.11]

steps:
- uses: actions/checkout@main
Expand All @@ -26,6 +26,8 @@ jobs:
pip install flake8 black pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
# Install package locally to check pip install works properly
pip install -e . --no-deps
# - name: Lint with flake8
# run: flake8 roocs_utils tests
# if: matrix.python-version == 3.6
Expand Down

0 comments on commit 4f11638

Please sign in to comment.