From 1d09e43e44f69a030e3a7290389a0b50fb1f946e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20C=2E=20Riven=C3=A6s?= Date: Fri, 6 Oct 2023 09:31:42 +0200 Subject: [PATCH] BLD: pin tables < 3.9 for python 3.8 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index eddc1d771..839cb3419 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,8 @@ dependencies = [ "scipy>=1.5", "segyio>1.8.0", "shapely>=1.6.2", - "tables;platform_system != 'Darwin'", # TODO: update when fixed for mac + "tables<3.9;platform_system != 'Darwin' and python_version == '3.8'", # TODO: mac... + "tables;platform_system != 'Darwin' and python_version > '3.8'", # TODO: mac... "typing-extensions", ]