From: Aarni Koskela Date: Wed, 23 Dec 2015 18:16:18 +0000 (+0200) Subject: Mark Python 3.5 as supported X-Git-Tag: 2.2.0~8^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F297%2Fhead;p=thirdparty%2Fbabel.git Mark Python 3.5 as supported Fixes #222 Refs #221 --- diff --git a/.ci/appveyor.yml b/.ci/appveyor.yml index 5a9fd008..8bec9251 100644 --- a/.ci/appveyor.yml +++ b/.ci/appveyor.yml @@ -32,6 +32,14 @@ environment: PYTHON_VERSION: "3.4.x" PYTHON_ARCH: "64" + - PYTHON: "C:\\Python35" + PYTHON_VERSION: "3.5.x" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python35-x64" + PYTHON_VERSION: "3.5.x" + PYTHON_ARCH: "64" + branches: # Only build official branches, PRs are built anyway. only: - master diff --git a/.travis.yml b/.travis.yml index 7bf5e9c4..8d5433eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ cache: directories: - cldr - "$HOME/.cache/pip" + - "$HOME/.pyenv" matrix: include: @@ -28,6 +29,8 @@ matrix: python: 3.3 - os: linux python: 3.4 + - os: linux + python: 3.5 - os: osx language: generic env: @@ -72,6 +75,12 @@ matrix: - PYTHON_VERSION=3.4.3 - PYENV_ROOT=~/.pyenv - PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin + - os: osx + language: generic + env: + - PYTHON_VERSION=3.5.1 + - PYENV_ROOT=~/.pyenv + - PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin install: - bash .ci/deps.${TRAVIS_OS_NAME}.sh diff --git a/setup.py b/setup.py index 83cd6517..7e70a032 100755 --- a/setup.py +++ b/setup.py @@ -59,6 +59,8 @@ setup( 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Libraries :: Python Modules', ], packages=['babel', 'babel.messages', 'babel.localtime'],