Skip to content

Commit

Permalink
Bump numpy/pandas to work with Python 3.12
Browse files Browse the repository at this point in the history
Partial cherry-pick of project-chip#33637.

When installing pip requirements for all fails on Python 3.12 with:
  File "/tmp/pip-build-env-o33g4it5/overlay/lib/python3.12/site-packages/pkg_resources/__init__.py", line 2172, in <module>
    register_finder(pkgutil.ImpImporter, find_on_path)
                    ^^^^^^^^^^^^^^^^^^^
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'?

Bump numpy/pandas to make this work on v1.3 branch too.
  • Loading branch information
agners committed Jul 13, 2024
1 parent 39cd2f1 commit fa36086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/setup/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ mypy-extensions==1.0.0
# via mypy
mypy-protobuf==3.5.0
# via -r requirements.all.txt
numpy==1.24.2
numpy==1.26.4
# via pandas
packaging==23.0
# via
Expand All @@ -143,7 +143,7 @@ packaging==23.0
# ghapi
# idf-component-manager
# west
pandas==1.5.3 ; platform_machine != "aarch64" and platform_machine != "arm64"
pandas==2.1.4 ; platform_machine != "aarch64" and platform_machine != "arm64"
# via -r requirements.memory.txt
parso==0.8.3
# via jedi
Expand Down

0 comments on commit fa36086

Please sign in to comment.