Skip to content

Commit

Permalink
chore: Add comment on Numpy constraints (#2617)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Aug 21, 2024
1 parent a4d09cc commit b619b0d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ sphinx-reredirects = {version = ">=0.1.5", python = ">=3.9", optional = true}
fs-s3fs = {version = ">=1.1.1", optional = true}

# Parquet file dependencies installed as optional 'parquet' extras
# We add Python constraints to force Poetry to add the latest supported Numpy version
# for all Python versions to 'poetry.lock'. If we don't do this, Poetry will add only
# the version of Numpy that is compatible with the earliest Python version supported
# by this project, but that may not be compatible with the latest Python version.
numpy = [
{ version = ">=1.22,<1.25", python = "==3.8", optional = true },
{ version = ">=1.22,<2.1", python = "==3.9", optional = true },
Expand Down

0 comments on commit b619b0d

Please sign in to comment.