Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Python 3.8 for CI tests #615

Merged
merged 2 commits into from
Dec 27, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ environment:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7"
TOXENV: "py27"
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6"
TOXENV: "py36"
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8"
TOXENV: "py38"

init:
- ECHO %PYTHON%
Expand Down
14 changes: 7 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ matrix:
os: linux
python: 2.7
env: TOXENV=py27
- name: "Run test suite on Linux with Python 3.6"
- name: "Run test suite on Linux with Python 3.8"
os: linux
python: 3.6
env: TOXENV=py36
- name: "Check code style with pylama on Linux - Python 3.6"
python: 3.8
env: TOXENV=py38
- name: "Check code style with pylama on Linux - Python 3.8"
os: linux
python: 3.6
python: 3.8
env: TOXENV=pylama
# 10.1 is OS X 10.13.x
# https://docs.travis-ci.com/user/languages/objective-c/#Supported-OS-X-iOS-SDK-versions
Expand All @@ -28,9 +28,9 @@ matrix:
language: generic
python: 2.7
env: TOXENV=py27
- name: "Run test suite on OS X with Python 3.6"
- name: "Run test suite on OS X with Python 3.8"
os: osx
osx_image: xcode9.4
osx_image: xcode11
language: generic
env: TOXENV=py3

Expand Down