fix: upgrade pandas to >=2.1.1 across all ISSR projects for Python 3.…#42
Open
hemasree1516 wants to merge 1 commit intohumanai-foundation:mainfrom
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR addresses the installation failures reported in #28 by upgrading pandas from 2.1.0 to 2.1.1 (or higher) across 5 project directories within the ISSR monorepo.
Why this is the correct fix:
pandas 2.1.0 does not provide pre-compiled binary wheels for Python 3.12 on Windows, which triggers a "build from source" error requiring Visual Studio C++ Build Tools. Version 2.1.1 officially supports Python 3.12 wheels, allowing for a seamless pip install experience for all modern Windows environments.
I have verified the file paths and ensured that the monorepo structure is maintained without introducing a root-level dependency file.