Merge pull request #195 from optuna/gh-action-python-ver

Support Python 3.10 and Drop Python 3.6
This commit is contained in:
Masashi Shibata
2022-03-23 13:35:31 +09:00
committed by GitHub
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -19,10 +19,10 @@ jobs:
- run: npm install
- run: npm run build:prd
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
+2 -2
View File
@@ -19,10 +19,10 @@ jobs:
- run: npm install
- run: npm run build:prd
- name: Set up Python 3.8
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Setup Python${{ matrix.python-version }}