Skip to content

Commit

Permalink
New try at including Python 3.5 in GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
perwin committed Nov 20, 2020
1 parent edcc650 commit fe9bb7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v2
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 astropy pytest
pip install flake8 astropy pytest scons
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# - name: Lint with flake8
# run: |
Expand Down

0 comments on commit fe9bb7f

Please sign in to comment.