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

Make libprotobuf a build only dependency #74

Merged
merged 19 commits into from
Oct 12, 2023
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
4def034
Rebuild for libprotobuf 4.23.3
charlesbluca Oct 12, 2023
5abcf49
MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and co…
Oct 12, 2023
8909e80
Define libprotobuf matrx in conda build config
charlesbluca Oct 12, 2023
ebbbb81
Modify conda build config to define libgrpc variants
charlesbluca Oct 12, 2023
a6635cf
Remove zip_keys.
bdice Oct 12, 2023
c5a9a97
Remove migrations.
bdice Oct 12, 2023
f315333
MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and co…
bdice Oct 12, 2023
de9f921
Add MACOSX_DEPLOYMENT_TARGET and re-rendered with conda-build 3.27.0,…
bdice Oct 12, 2023
6fee414
Attempt to update build matrix with migrator file
charlesbluca Oct 12, 2023
7a662d4
Revert changes to migrators.
bdice Oct 12, 2023
1c985af
Update migrator to use operation: key_add.
bdice Oct 12, 2023
35d2ca7
MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and co…
bdice Oct 12, 2023
17a73ae
Remove libprotobuf from host deps
charlesbluca Oct 12, 2023
4cce344
MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.27.1, and co…
charlesbluca Oct 12, 2023
a9dc936
Unconditionally include libprotobuf in build deps
charlesbluca Oct 12, 2023
5f7c60a
MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.27.1, and co…
charlesbluca Oct 12, 2023
5775146
Delete unneeded custom migrator
jakirkham Oct 12, 2023
8c6f29d
MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and co…
Oct 12, 2023
689afdd
Readd EOF newline to `conda_build_config.yaml`
jakirkham Oct 12, 2023
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
5 changes: 2 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,21 @@ build:
entry_points:
- dask-sql-server = dask_sql.server.app:main
- dask-sql = dask_sql.cmd:main
number: 0
number: 1

requirements:
build:
- python # [build_platform != target_platform]
- cross-python_{{ target_platform }} # [build_platform != target_platform]
- maturin # [build_platform != target_platform]
- libprotobuf # [build_platform != target_platform]
- libprotobuf
- zlib # [build_platform != target_platform]
- {{ compiler('c') }}
- {{ compiler('rust') }}
host:
- pip
- python
- maturin
- libprotobuf
- zlib
- xz # [linux64]
run:
Expand Down