diff --git a/.travis.yml b/.travis.yml index adc52239c4..4a48aa124b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,7 @@ jobs: stage: check os: linux language: python - python: 3.7 + python: 3.8 before_install: install: script: ./scripts/ci/check_patch.sh @@ -41,7 +41,7 @@ jobs: language: shell # 'language: python' is an error on Travis CI Windows env: - PY2=1 - - name: "3.7 on Windows" + - name: "3.8 on Windows" os: windows # Windows 10.0.17134 N/A Build 17134 language: shell # 'language: python' is an error on Travis CI Windows - name: "2.7 on Linux" @@ -55,9 +55,9 @@ jobs: - name: "3.6 on Linux" language: python python: 3.6 - - name: "3.7 on Linux" + - name: "3.8 on Linux" language: python - python: 3.7 + python: 3.8 - name: "2.7 on Mac" os: osx osx_image: xcode9.4 @@ -82,13 +82,13 @@ jobs: script: ./scripts/build_windows.cmd - name: "Linux pkgs" language: python - python: 3.7 + python: 3.8 before_install: install: script: ./scripts/build_posix.sh - name: "Pypi pkgs" language: python - python: 3.7 + python: 3.8 script: ./scripts/build_package.sh - name: Snapcraft snap addons: @@ -114,7 +114,7 @@ jobs: if: tag is present stage: deploy language: python - python: 3.7 + python: 3.8 script: ./scripts/build_package.sh deploy: - provider: pypi diff --git a/scripts/ci/before_install.sh b/scripts/ci/before_install.sh index bf5c9fa780..f07440b915 100644 --- a/scripts/ci/before_install.sh +++ b/scripts/ci/before_install.sh @@ -48,8 +48,8 @@ if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install python2 echo 'PATH="/c/Python27:/c/Python27/Scripts:$PATH"' >> env.sh else - choco install python --version 3.7.5 - echo 'PATH="/c/Python37:/c/Python37/Scripts:$PATH"' >> env.sh + choco install python --version 3.8.0 + echo 'PATH="/c/Python38:/c/Python38/Scripts:$PATH"' >> env.sh fi elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ ! -n "$PY2" ]]; then diff --git a/setup.py b/setup.py index 08324a0be4..89ed2fafaf 100644 --- a/setup.py +++ b/setup.py @@ -183,6 +183,7 @@ def run(self): "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], packages=find_packages(exclude=["tests"]), include_package_data=True,