From 91c5e0e602c38f96edd2e55568d1292b07d1bdcd Mon Sep 17 00:00:00 2001 From: John Blischak Date: Mon, 1 Jul 2024 14:48:52 -0400 Subject: [PATCH] Build with numpy 2 --- apis/python/conda-env.yml | 2 +- apis/python/pyproject.toml | 2 +- ci/gha-win-env.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apis/python/conda-env.yml b/apis/python/conda-env.yml index 9d632ab56..3942e718d 100644 --- a/apis/python/conda-env.yml +++ b/apis/python/conda-env.yml @@ -2,7 +2,7 @@ name: tiledbvcf-py channels: - conda-forge dependencies: - - numpy<2 + - numpy - python<3.12 # based on available tiledb-py wheels - pybind11 - pyarrow>=14.0.2 # for pyarrow security fix diff --git a/apis/python/pyproject.toml b/apis/python/pyproject.toml index f984f995f..efece60f5 100644 --- a/apis/python/pyproject.toml +++ b/apis/python/pyproject.toml @@ -40,7 +40,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", ] -dependencies = ["pandas", "pyarrow", "pyarrow-hotfix", "numpy<2"] +dependencies = ["pandas", "pyarrow", "pyarrow-hotfix", "numpy"] [project.optional-dependencies] test = ["dask[distributed]", "pytest", "tiledb"] diff --git a/ci/gha-win-env.yml b/ci/gha-win-env.yml index 8289dae4b..170c91f8a 100644 --- a/ci/gha-win-env.yml +++ b/ci/gha-win-env.yml @@ -11,7 +11,7 @@ dependencies: - tiledb=2.15 - vs2019_win-64 # build tiledbvcf-py - - numpy<2 + - numpy - pandas<2.0 - pyarrow=9.0 - pyarrow-hotfix