From ef1212a0d81544b40c5b484bafa2aaf57b1a26d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20C=2E=20Riven=C3=A6s?= Date: Wed, 25 Oct 2023 20:34:46 +0200 Subject: [PATCH] BLD: add joblib as dependency for hashing pandas --- pyproject.toml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f0ab65b1d..a1521e7fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,11 @@ [build-system] requires = [ - "scikit-build-core[pyproject]<0.6.0", - "swig", - "numpy==1.19.2; python_version == '3.8'", - "numpy==1.19.5; python_version == '3.9'", - "numpy==1.21.6; python_version == '3.10'", - "numpy==1.23.5; python_version == '3.11'", + "scikit-build-core[pyproject]<0.6.0", + "swig", + "numpy==1.19.2; python_version == '3.8'", + "numpy==1.19.5; python_version == '3.9'", + "numpy==1.21.6; python_version == '3.10'", + "numpy==1.23.5; python_version == '3.11'", ] build-backend = "scikit_build_core.build" @@ -22,9 +22,7 @@ description = "XTGeo is a Python library for 3D grids, surfaces, wells, etc" readme = "README.md" requires-python = ">=3.8" license = { text = "LGPL-3.0" } -authors = [ - { name = "Equinor", email = "jriv@equinor.com" }, -] +authors = [{ name = "Equinor", email = "jriv@equinor.com" }] keywords = ["grids", "surfaces", "wells", "cubes"] classifiers = [ "Development Status :: 5 - Production/Stable", @@ -49,6 +47,7 @@ dependencies = [ "resfo>=4.0.0", "h5py>=3", "hdf5plugin>=2.3", + "joblib", "matplotlib>=3.3", "numpy>=1.19", "pandas>=1.1",