Merge pull request #753 from Alexander-N/py3.8-ci

Add Python 3.8 to CI
This commit is contained in:
Yuji Kanagawa 2020-02-02 00:11:19 +09:00 committed by GitHub
commit 1beca86b1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View File

@ -8,7 +8,7 @@ jobs:
strategy: strategy:
max-parallel: 4 max-parallel: 4
matrix: matrix:
python-version: [3.5, 3.6, 3.7] python-version: [3.5, 3.6, 3.7, 3.8]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1

View File

@ -24,8 +24,6 @@ matrix:
- name: PyPy3.5 7.0 # Tested via anaconda PyPy (since travis's PyPy version is too old) - name: PyPy3.5 7.0 # Tested via anaconda PyPy (since travis's PyPy version is too old)
python: "3.7" python: "3.7"
env: FEATURES="pypy" PATH="$PATH:/opt/anaconda/envs/pypy3/bin" env: FEATURES="pypy" PATH="$PATH:/opt/anaconda/envs/pypy3/bin"
allow_failures:
- python: "3.8-dev"
env: env:
global: global:

View File

@ -2,6 +2,7 @@
envlist = py35, envlist = py35,
py36, py36,
py37, py37,
py38,
minversion = 3.4.0 minversion = 3.4.0
skip_missing_interpreters = true skip_missing_interpreters = true