summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2015-12-23 20:16:18 +0200
committerAarni Koskela <akx@iki.fi>2015-12-23 20:17:04 +0200
commite47064ed88c5dc5223f87ee8452d02964e9fe373 (patch)
treecd9628117645bbf4b8dd49567c2bb45c41224f4e
parentec6098ff64ba387218eef3cc914b47efdf40d5c0 (diff)
downloadbabel-e47064ed88c5dc5223f87ee8452d02964e9fe373.tar.gz
Mark Python 3.5 as supported
Fixes #222 Refs #221
-rw-r--r--.ci/appveyor.yml8
-rw-r--r--.travis.yml9
-rwxr-xr-xsetup.py2
3 files changed, 19 insertions, 0 deletions
diff --git a/.ci/appveyor.yml b/.ci/appveyor.yml
index 5a9fd00..8bec925 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 7bf5e9c..8d5433e 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 83cd651..7e70a03 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'],