Skip to content

Commit

Permalink
fix lint; fix build
Browse files Browse the repository at this point in the history
Signed-off-by: Xun Li <lixun910@gmail.com>
  • Loading branch information
lixun910 committed Apr 22, 2024
1 parent fd04499 commit ddef040
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
node-version: 18.x
registry-url: https://registry.npmjs.org/

- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion bindings/kepler.gl-jupyter/keplergl/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: MIT
# Copyright contributors to the kepler.gl project

version_info = (0, 3, 4, 'final', 0)
version_info = (0, 3, 4, 'alpha', 0)

_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}

Expand Down
1 change: 1 addition & 0 deletions src/layers/src/heatmap-layer/heatmap-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ class HeatmapLayer extends MapboxGLLayer {
const getPosition = this.getPositionAccessor(dataContainer);
const {data} = this.updateData(datasets, oldLayerData);

// @ts-ignore datasets is not typed
const newConfig = this.computeHeatmapConfiguration(this.config, datasets);
newConfig.id = this.id;

Expand Down
1 change: 1 addition & 0 deletions src/layers/src/layer-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export function getGeojsonLayerMetaFromArrow({
};
// create binary data from arrow data for GeoJsonLayer
const {binaryGeometries, featureTypes, bounds, meanCenters} = getBinaryGeometriesFromArrow(
// @ts-ignore Fix the type error later, need to upgrade apache-arrow in kepler.gl to v15 as in loader.gl
geoColumn,
encoding,
options
Expand Down

0 comments on commit ddef040

Please sign in to comment.