Skip to content

Commit 55a3357

Browse files
committed
Add Python 3.6 to build matrix
1 parent 358d654 commit 55a3357

6 files changed

+6
-16
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ matrix:
7373
- SKIP_DOCS=1
7474
- python: 3.4
7575
- python: 3.5
76+
- python: 3.6
7677
env:
7778
- COVERAGE=1
7879
- DEPLOY_DOCS=1

.travis/deploy_docs.sh

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
set -e
44

5-
source ~/envs/cesium/bin/activate
6-
75
if [[ $TRAVIS_PULL_REQUEST == false && \
86
$TRAVIS_BRANCH == "master" && \
97
$DEPLOY_DOCS == 1 ]]

.travis/travis_install.sh

+1-7
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
set -ex
44

5-
section "create.virtualenv"
6-
#python -m venv ~/envs/cesium
7-
virtualenv -p python ~/envs/cesium
8-
source ~/envs/cesium/bin/activate
9-
section_end "create.virtualenv"
10-
115

126
section "install.base.requirements"
137
pip install --upgrade pip
@@ -24,7 +18,7 @@ section_end "install.cesium.requirements"
2418

2519

2620
section "build.cython.extensions"
27-
pip install --retries 3 -q $WHEELHOUSE cython==0.23.4
21+
pip install --retries 3 -q cython==0.25.2
2822
python setup.py build_ext -i
2923
section_end "build.cython.extensions"
3024

.travis/travis_script.sh

+2-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@
22

33
set -ex
44

5-
source ~/envs/cesium/bin/activate
6-
7-
85
section "Tests"
96

10-
if [[ $COVERAGE==1 ]]; then
7+
if [[ -n $COVERAGE ]]; then
118
PYTEST_FLAGS='--cov=./'
129
fi
13-
PYTHONPATH=. pytest -v cesium $PYTEST_FLAGS
10+
python -m pytest -v $PYTEST_FLAGS
1411

1512
section_end "Tests"
1613

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ clean:
1313
find . -name "*.so" | xargs rm -f
1414

1515
test:
16-
PYTHONPATH=. pytest -v cesium
16+
python -m pytest -v
1717

1818
install:
1919
pip install -r requirements.txt

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def configuration(parent_package='', top_path=None):
117117
],
118118

119119
install_requires=INSTALL_REQUIRES,
120-
setup_requires=['cython>=0.21'],
120+
setup_requires=['cython>=0.25'],
121121
requires=REQUIRES,
122122
configuration=configuration,
123123
packages=setuptools.find_packages(exclude=['doc']),

0 commit comments

Comments
 (0)