From dd580cda59fd115a40726ca47038b0a8a12b7210 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Fri, 21 Jun 2024 07:59:12 -0400 Subject: [PATCH] Use numpy v2 in tests (#64) * Use numpy v2 in tests * alphabetize pc deps --- pyproject.toml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index eb85ace..093ef8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,21 +33,22 @@ version-file = "stac_geoparquet/_version.py" [project.optional-dependencies] pgstac = [ "fsspec", - "pypgstac", "psycopg[binary,pool]", - "tqdm", + "pypgstac", "python-dateutil", + "tqdm", ] -pc = ["adlfs", "pypgstac", "psycopg[binary,pool]", "tqdm", "azure-data-tables"] +pc = ["adlfs", "azure-data-tables", "psycopg[binary,pool]", "pypgstac", "tqdm"] test = [ + "mypy", + "numpy>=2", + "pre-commit", "pytest", "requests", - "pre-commit", - "stac-geoparquet[pgstac]", "stac-geoparquet[pc]", + "stac-geoparquet[pgstac]", "types-python-dateutil", "types-requests", - "mypy", ]