Friday, August 13, 2021

PyCharm: PyCharm 2021.2.1 Release Candidate Is Out!

Two weeks have passed since the release of PyCharm 2021.2, and we’ve spent this time working on enhancing the performance of the product. Moreover, we added a new lesson on working with VCS to our Feature Trainer plugin. To go through the lesson, select Help | Learn IDE Features from the main menu, and expand the Git module in the list of available lessons.

Download PCharm 2021.2.1 RC

Here is a list of the most notable improvements in PyCharm 2021.2.1:

  • Docker Compose: when the Docker Compose V2 experimental feature is enabled, it is now possible to create a Python interpreter. [PY-49305]
  • Flask: the debugger now works correctly in Flask projects. [PY-49984]
  • Parser: the false positive “Statement expected. found Py:DEDENT” no longer appears. [PY-49970]
  • Test runner autodetection: navigation to pytest fixture declarations works when using the autodetected pytest test runner. [PY-49770]
  • Python console: the Execute current statement in One-Line Console action works in Float mode. [PY-49527]

To see the whole list of the improvements available in the Release Candidate for PyCharm 2021.2.1, please look through the release notes.

If you notice any bugs, please submit them to our issue tracker.

The PyCharm team



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...