Skip to content

Commit

Permalink
BLD: pin tables < 3.9 for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrivenaes committed Oct 6, 2023
1 parent 70fa992 commit 99409e8
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[build-system]
requires = [
"scikit-build-core[pyproject]",
"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]",
"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"

Expand All @@ -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 = "[email protected]" },
]
authors = [{ name = "Equinor", email = "[email protected]" }]
keywords = ["grids", "surfaces", "wells", "cubes"]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down Expand Up @@ -57,7 +55,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",
]

Expand Down

0 comments on commit 99409e8

Please sign in to comment.