mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
bump python version to 3.9. (#433)
This commit is contained in:
6
.github/workflows/Linux_CI.yml
vendored
6
.github/workflows/Linux_CI.yml
vendored
@@ -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
|
||||
|
||||
4
.github/workflows/MacOS_CI.yml
vendored
4
.github/workflows/MacOS_CI.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user