Merge pull request #628 from CartoDB/bug/sc-254346/opianalytics-here-isolines-returning-null
This commit is contained in:
commit
94512eea59
9
.github/workflows/main.yml
vendored
9
.github/workflows/main.yml
vendored
@ -15,11 +15,10 @@ jobs:
|
|||||||
- name: Set CLOUDSDK_PYTHON path
|
- name: Set CLOUDSDK_PYTHON path
|
||||||
run: echo "CLOUDSDK_PYTHON=/usr/bin/python" >> $GITHUB_ENV
|
run: echo "CLOUDSDK_PYTHON=/usr/bin/python" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Set up docker registry
|
- name: Setup gcloud authentication
|
||||||
env:
|
uses: google-github-actions/setup-gcloud@v0
|
||||||
SA_TO_USE: ${{ secrets.GCS }}
|
with:
|
||||||
run: |
|
service_account_key: ${{ secrets.GCS }}
|
||||||
echo "${SA_TO_USE}" | base64 -d | docker login -u _json_key --password-stdin https://gcr.io
|
|
||||||
|
|
||||||
- name: Pull base image
|
- name: Pull base image
|
||||||
run: docker pull gcr.io/cartodb-on-gcp-ci-testing/cartodb-postgresql-base:${{ matrix.pg_version }}
|
run: docker pull gcr.io/cartodb-on-gcp-ci-testing/cartodb-postgresql-base:${{ matrix.pg_version }}
|
||||||
|
5
NEWS.md
5
NEWS.md
@ -1,3 +1,8 @@
|
|||||||
|
Sep 5th, 2022
|
||||||
|
==============
|
||||||
|
* Version `0.24.2` of the Python library
|
||||||
|
* Fix error calculating isolines with HERE
|
||||||
|
|
||||||
May 26th, 2021
|
May 26th, 2021
|
||||||
==============
|
==============
|
||||||
* Version `0.40.1` of the server extension
|
* Version `0.40.1` of the server extension
|
||||||
|
@ -345,6 +345,9 @@ class HereMapsRoutingIsolineV8(Traceable):
|
|||||||
mode_params.update({'routingmode': mode_type})
|
mode_params.update({'routingmode': mode_type})
|
||||||
|
|
||||||
if not ('mode_traffic' in options and options['mode_traffic'] == 'enabled'):
|
if not ('mode_traffic' in options and options['mode_traffic'] == 'enabled'):
|
||||||
|
if 'is_destination' in options and options['is_destination'].lower() == 'true':
|
||||||
|
mode_params.update({'arrivaltime': 'any'})
|
||||||
|
else:
|
||||||
mode_params.update({'departuretime': 'any'})
|
mode_params.update({'departuretime': 'any'})
|
||||||
|
|
||||||
return mode_params
|
return mode_params
|
||||||
|
@ -10,7 +10,7 @@ from setuptools import setup, find_packages
|
|||||||
setup(
|
setup(
|
||||||
name='cartodb_services',
|
name='cartodb_services',
|
||||||
|
|
||||||
version='0.24.1',
|
version='0.24.2',
|
||||||
|
|
||||||
description='CartoDB Services API Python Library',
|
description='CartoDB Services API Python Library',
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user