-
Notifications
You must be signed in to change notification settings - Fork 5
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
update TileDB-VCF to 0.29.0 #111
Conversation
This pull request has been linked to Shortcut Story #41337: Update Core to 2.20.1. |
Need to fix the sha256:
|
The linux-64 job is failing with the same Python 3.7 error we saw last week in TileDB-Inc/tiledbsoma-feedstock#83
I think it's time to drop the Python 3.7 build just like we did for tiledbsoma-feedstock. cc @ihnorton @Shelnutt2 |
Lets drop it! |
Re-running CI to check sc-38823 |
@awenocur you can drop the py37 build by deleting the following from tiledb-vcf-feedstock/recipe/conda_build_config.yaml Lines 9 to 23 in 6eef8ee
|
More conda solver errors when trying to build the Python client:
Until we move away from pyarrow 11, I suspect the conda solver errors will continue to be problematic: tiledb-vcf-feedstock/recipe/conda_build_config.yaml Lines 9 to 14 in 9ba78d5
arrow 11 is no longer receiving the conda-forge migrator updates, so it isn't built against the latest aws-sdk-cpp versions, and thus is unable to be installed in the same environment as tiledb 2.20 |
…nda-forge-pinning 2024.03.07.20.43.08
I believe we can fix the osx-arm64 conflict in a build-bump by making the pyarrow |
The error is: ImportError: cannot import name 'set_timezone_db_path' from 'pyarrow.lib' (/Users/runner/miniforge3/conda-bld/tiledb-vcf_1709872988870/_build_env/venv/lib/python3.9/site-packages/pyarrow/lib.cpython-39-darwin.so) It's unclear to me why only osx-arm64 would need a different pyarrow version for different python versions. My initial guess would be a cross-compilation problem, since osx-arm64 is the only cross-compiled job in this feedstock. |
The osx-arm64 build was fixed in in #114 In the failing build in this PR, pyarrow 11 was installed in the build env and pyarrow 15 in the host env. In the passing build from #114, pyarrow 15 was installed in both the build and host envs. Honestly unclear why pyarrow 11 was installed in the build env in this PR. It didn't have any minimum or maximum contraints in the |
No description provided.