Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added python 3.8; update to use manylinux2010; PROJ 6.2.1 #18

Merged
merged 13 commits into from
Nov 6, 2019
19 changes: 18 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ env:
global:
- REPO_DIR=pyproj
# Commit from your-project that you want to build
- BUILD_COMMIT=v2.4.0rel
- BUILD_COMMIT=v2.4.1rel
# pip dependencies to _build_ your project
- BUILD_DEPENDS="Cython"
# pip dependencies to _test_ your project. Include any dependencies
Expand All @@ -12,6 +12,8 @@ env:
- PLAT=x86_64
- UNICODE_WIDTH=32
- WHEELHOUSE_UPLOADER_USERNAME=travis-worker
# build manylinux 2010 wheels
- MB_ML_VER=2010
# Following generated with
# travis encrypt -r pyproj4/pyproj-wheels WHEELHOUSE_UPLOADER_SECRET=<the api key>
# This is for Rackspace uploads. Contact Matthew Brett, or the
Expand Down Expand Up @@ -45,13 +47,23 @@ matrix:
env:
- MB_PYTHON_VERSION=3.6
- PLAT=i686
- MB_ML_VER=1
- os: linux
env:
- MB_PYTHON_VERSION=3.7
- os: linux
env:
- MB_PYTHON_VERSION=3.7
- PLAT=i686
- MB_ML_VER=1
- os: linux
env:
- MB_PYTHON_VERSION=3.8
# - os: linux
# env:
# - MB_PYTHON_VERSION=3.8
# - PLAT=i686
# - MB_ML_VER=1
- os: osx
language: generic
env:
Expand All @@ -64,6 +76,11 @@ matrix:
language: generic
env:
- MB_PYTHON_VERSION=3.7
# python 3.8 not available on osx yet
# - os: osx
# language: generic
# env:
# - MB_PYTHON_VERSION=3.8
# - os: osx
# language: generic
# env:
Expand Down
4 changes: 2 additions & 2 deletions config.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Define custom utilities
# Test for macOS with [ -n "$IS_OSX" ]
PROJ_VERSION=6.2.0
PROJ_VERSION=6.2.1
DATUMGRID_VERSION=1.8
SQLITE_VERSION=3240000

Expand All @@ -19,7 +19,7 @@ function build_sqlite {
function build_proj {
if [ -e proj-stamp ]; then return; fi
fetch_unpack http://download.osgeo.org/proj/proj-${PROJ_VERSION}.tar.gz
(cd proj-${PROJ_VERSION}/data \
(cd proj-${PROJ_VERSION:0:5}/data \
&& curl http://download.osgeo.org/proj/proj-datumgrid-${DATUMGRID_VERSION}.zip > proj-datumgrid.zip \
&& unzip -o proj-datumgrid.zip \
&& rm proj-datumgrid.zip \
Expand Down