Thursday, April 1, 2021

PyCharm: PyCharm 2021.1 Release Candidate Is Here!

The release candidate (RC) for PyCharm 2021.1 is out. We are polishing the product and fixing bugs before the major 2021.1 release.

DOWNLOAD PYCHARM 2021.1 RC

Note that unlike previous EAP builds, this one requires you to have an active PyCharm license.

Here are the main bug fixes included in the release candidate:

  • Django Model Dependency Diagram is now displayed when it is called. PY-39831
  • The “walrus operator” used in “if” and “while” statements is recognized as a part of an assignment expression. PY-39262
  • Opening a stand-alone non-project file no longer creates a new project and main.py or open a main.py file instead. PY-46055, PY-47697
  • The Python Packages tool window now works for packages installed in remote interpreters. PY-47789

For the full list, please read the release notes.

Browse through a series of EAP blog posts to see what we were working on for PyCharm 2021.1.

How to download

Download this RC from our website. If you’re on Ubuntu 16.04 or later, you can use snap to get PyCharm EAP and stay up to date.

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...