Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

Commit

Permalink
added python 3.8; update to use manylinux2010; PROJ 6.2.1 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
snowman2 authored Nov 6, 2019
1 parent de537f3 commit f81b784
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
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

0 comments on commit f81b784

Please sign in to comment.