-
-
Notifications
You must be signed in to change notification settings - Fork 33.2k
Description
Bug report
Bug description:
Description:
I recently upgraded to Python 3.13, and while working with Django, I need to set up a virtual environment. After creating the environment, I attempt to install dependencies by running the command:
"pip install -r requirements.txt"
The installation progresses normally until it reaches pandas version 2.2.2. At this point, it stalls and does not proceed further.
This issue seems to be specific to the combination of Python 3.13 and pandas 2.2.2, as it wasn't an issue with previous Python versions.
Steps to Reproduce:
Install Python 3.13.
Set up a virtual environment and activate it.
Run pip install -r requirements.txt with pandas==2.2.2 listed as a dependency.
Expected Behavior:
The dependencies, including pandas, should install without any issues.
Actual Behavior:
The installation process stalls at the pandas 2.2.2 installation step, with no further progress.
Environment:
Python version: 3.13
Pandas version: 2.2.2
Django: 5.1.2
Operating System: windows 11
Additional Information:
CPython versions tested on:
3.13
Operating systems tested on:
Windows