PyCharm 2024.3.2
Released: Jan 28, 2025
2024.3.2 での更新項目
機能
- Support for uv package management - Create new environments from scratch or use a new environment type option to apply uv to existing ones. Additionally, when importing projects from version control, enjoy the flexibility to choose between
venv and uv as your virtual environment manager.
- Flame graph visualization - You can now quickly find out where your code spends most of its execution time. Flame graphs display the application call tree, allowing you to check how long each call takes in the entire snapshot or in the call's direct parent. You can even set a threshold, search for specific methods, and zoom the graph to focus on it.
- Quick-fix: Install missing packages from PyPI - If a package is not available in the default Conda repository, PyCharm now throws an error message and gives you the option to install the missing package from PyPI. You can either select Install from PyPI and proceed as normal or Abort Installation if you prefer to take a different route.
不具合の修正
- Python Debug Server with pydevd-pycharm stopped working in 2024.3.
- Poetry packages are automatically updated.
- False unresolved attribute reference for enum
value when enum inherits str or StrEnum.
- Incorrect mutable default error in the Pydantic model.