]> git.ipfire.org Git - thirdparty/babel.git/commitdiff
Mark Python 3.5 as supported 297/head
authorAarni Koskela <akx@iki.fi>
Wed, 23 Dec 2015 18:16:18 +0000 (20:16 +0200)
committerAarni Koskela <akx@iki.fi>
Wed, 23 Dec 2015 18:17:04 +0000 (20:17 +0200)
Fixes #222
Refs #221

.ci/appveyor.yml
.travis.yml
setup.py

index 5a9fd008bf7506dbb467c7b5907054ba464a6f0f..8bec9251e82b3d0a61178657b46aeebc15e99417 100644 (file)
@@ -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
index 7bf5e9c4d92a7116862282f2db0825605e8cab30..8d5433ebf0cb7e6f1d75541d48e4f242d3be3ab0 100644 (file)
@@ -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
index 83cd6517001e4f581443ef7a6ed876b0c1fe6c08..7e70a0320a61098f7a446adc7d5cca99aaca2d2b 100755 (executable)
--- 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'],