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

Lower pyarrow lower-bound to version 5, update copyright headers #102

Merged
merged 5 commits into from
Apr 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ jobs:
strategy:
matrix:
options: [
[ubuntu-20.04, linux-64, "bash -l {0}", manylinux2010_x86_64, cp37],
[ubuntu-20.04, linux-64, "bash -l {0}", manylinux2010_x86_64, cp310],
# TODO: Should run tests on Windows and Mac as well, but there a GitHub action issues
# [windows-2019, win-64, "pwsh", win_amd64, cp37],
Expand Down
4 changes: 2 additions & 2 deletions BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,6 @@ maturin build --release --strip --target aarch64-apple-darwin
2. Update lock files with
```bash
cd python/vegafusion-jupyter/
conda-lock -f dev-environment-3.7.yml -p osx-64 -p linux-64 -p win-64 --filename-template "conda-{platform}-cp37.lock"
conda-lock -f dev-environment-3.10.yml -p osx-64 -p linux-64 -p win-64 --filename-template "conda-{platform}-cp310.lock"
conda-lock -f dev-environment-3.7.yml --kind explicit -p osx-64 -p linux-64 -p win-64 --filename-template "conda-{platform}-cp37.lock"
conda-lock -f dev-environment-3.10.yml --kind explicit -p osx-64 -p linux-64 -p win-64 --filename-template "conda-{platform}-cp310.lock"
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The core VegaFusion algorithms are implemented in Rust. Python integration is pr
See the documentation at https://vegafusion.io

## Project Status
VegaFusion is a young project, but it is already fairly well tested. The integration test suite includes image comparisons with over 600 specifications from the Vega, Vega-Lite, and Altair galleries. Even so, VegaFusion should not be considered production ready quite yet.
VegaFusion is a young project, but it is already fairly well tested. The integration test suite includes image comparisons with over 600 specifications from the Vega, Vega-Lite, and Altair galleries.

## Quick Start: Serverside acceleration for Altair in Jupyter
VegaFusion can be used to provide serverside acceleration for Altair visualizations when displayed in Jupyter contexts (Classic notebook, JupyterLab, and Voila). First, install the `vegafusion-jupyter` package, along with `vega-datasets` for the example below.
Expand Down
2 changes: 1 addition & 1 deletion javascript/vegafusion-chart-editor/bootstrap.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* VegaFusion
* Copyright (C) 2022 Jon Mease
* Copyright (C) 2022 VegaFusion Technologies LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion javascript/vegafusion-chart-editor/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* VegaFusion
* Copyright (C) 2022 Jon Mease
* Copyright (C) 2022 VegaFusion Technologies LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion javascript/vegafusion-chart-editor/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* VegaFusion
* Copyright (C) 2022 Jon Mease
* Copyright (C) 2022 VegaFusion Technologies LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down
18 changes: 4 additions & 14 deletions javascript/vegafusion-embed/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
/*
* VegaFusion
* Copyright (C) 2022 Jon Mease
* Copyright (C) 2022 VegaFusion Technologies LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program.
* If not, see http://www.gnu.org/licenses/.
* This program is distributed under multiple licenses.
* Please consult the license documentation provided alongside
* this program the details of the active license.
*/

import {MsgReceiver as MsgReceiver2} from "vegafusion-wasm";
Expand Down
18 changes: 4 additions & 14 deletions javascript/vegafusion-embed/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,10 @@
/*
* VegaFusion
* Copyright (C) 2022 Jon Mease
* Copyright (C) 2022 VegaFusion Technologies LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program.
* If not, see http://www.gnu.org/licenses/.
* This program is distributed under multiple licenses.
* Please consult the license documentation provided alongside
* this program the details of the active license.
*/

// eslint-disable-next-line @typescript-eslint/ban-ts-comment
Expand Down
Loading