bump python version to 3.9. (#433)

This commit is contained in:
Atsushi Sakai
2020-12-30 13:52:00 +09:00
committed by GitHub
parent d29dacbf9e
commit 581b3cf27a
6 changed files with 18 additions and 16 deletions

View File

@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']
python-version: ['3.9']
name: Python ${{ matrix.python-version }} CI
@@ -21,9 +21,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
# TODO: remove numpy installation after fix cvxpy install issue
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install numpy
python -m pip install -r requirements.txt
- name: install coverage
run: pip install coverage
- name: install mypy

View File

@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8' ]
python-version: [ '3.9' ]
name: Python ${{ matrix.python-version }} CI
steps:
- uses: actions/checkout@v2
@@ -23,8 +23,10 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
# TODO: remove numpy installation after fix cvxpy install issue
run: |
python -m pip install --upgrade pip
pip install numpy
pip install -r requirements.txt
- name: install coverage
run: pip install coverage