Wednesday, December 29, 2021

PyCharm: PyCharm 2021.3.1 Is Out!

The first minor release of PyCharm 2021.3 contains multiple bug fixes:

  • We fixed a bug that prevented Django to run inside WSL. [PY-51679]
  • We fixed a bug where PyCharm suggested importing abstract collections from collections. [PY-46344]
  • We fixed a bug that displayed outputs in white text on white background. [IDEA-283193]
  • We fixed a bug that made tool windows to be moved into a separate window when resizing it. [IDEA-274904]
  • We fixed a bug that displayed incorrect results in DateTime columns when using the database tools with ClickHouse. [DBE-7770]

Download PyCharm 2021.3.1

For the full list of issues addressed in PyCharm 2021.3.1, please see the release notes.
Found a bug? Please report it using our bug tracker.



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