Skip to content

Commit

Permalink
Correcting a toml syntax issue. RE:natcap#1641
Browse files Browse the repository at this point in the history
  • Loading branch information
phargogh committed Oct 15, 2024
1 parent c28041c commit e7c7c1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ invest = "natcap.invest.cli:main"
# available at runtime.
requires = [
'setuptools>=61', 'wheel', 'setuptools_scm>=8.0', 'cython>=3.0.0', 'babel',
'oldest-supported-numpy; python_version<=3.8',
'numpy>=2; python_version>3.8', # numpy 2 only available for 3.9+
'oldest-supported-numpy; python_version<="3.8"',
'numpy>=2; python_version>"3.8"', # numpy 2 only available for 3.9+
]
build-backend = "setuptools.build_meta"

Expand Down

0 comments on commit e7c7c1a

Please sign in to comment.