Skip to content

Commit

Permalink
Use numpy v2 in tests (#64)
Browse files Browse the repository at this point in the history
* Use numpy v2 in tests

* alphabetize pc deps
  • Loading branch information
kylebarron authored Jun 21, 2024
1 parent 768df20 commit dd580cd
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]


Expand Down

0 comments on commit dd580cd

Please sign in to comment.