Python Monthly News

Python News: What's New From August 2021

Summer holidays have ended, and it’s back to school again. While it was a time of leisure and getting disconnected from the virtual world for many of us, the Python maintainers and contributors have been busy working during that same period. Just in August 2021, the Python community saw three new Python releases, bringing some important security fixes, optimizations, and brand-new features.

Let’s dive into the biggest Python news from the past month!

Python 3.10 Is Almost Ready

On August 3rd, the first preview release of Python 3.10.0 finally came out.

The Python community has been holding their breath for months in anticipation of the next minor release of their favorite language. Python 3.10.0 will be packed with loads of exciting new features and improvements. Some even sparked a bit of controversy, but that’s often the case with groundbreaking changes.

If you can’t wait to give Python 3.10.0 a test drive before it’s officially released on October 4th, then you can grab its release candidate that got published early last month. The final release will only include bug fixes without adding extra features, so the preview release is fairly complete.

You can access the preview release in a couple of different ways:

  • You can navigate your web browser to the official Python 3.10.0rc1 downloads page and fetch either the source code to compile or a Python installer for your operating system.
  • Alternatively, you can run the release candidate alongside your other Python interpreters with the help of pyenv.
  • Finally, you can try the latest Python release without installing it by running the interpreter in a Docker container.

The most revolutionary upcoming change, which deserves a brief mention here, is the addition of structural pattern matching to the language’s syntax. Pattern matching is a powerful construct seen in some functional programming languages, like Scala, and can make your code much cleaner and more reliable. In some cases, it will also let you mimic the switch statement, which Python has been criticized for not having.

But that’s only scratching the surface! There will be lots of other improvements, so stay tuned for future Real Python tutorials that will break down most of the new features in Python 3.10 for you.

Python 3.9 and 3.8 Become More Secure

Both Python 3.9.7 and Python 3.8.12 were released on August 30th.

Even though Python 3.10 will soon be the latest version of the language and will provide some cutting-edge features, it’s going to take some time before it becomes widespread and fully supported by third-party library vendors. Therefore, most companies that use Python commercially will likely stick to slightly older releases for a bit, as older releases are more stable and battle-tested.

Python 3.9.7 is now the newest stable release that you should consider installing. This release includes several dozen security and bug fixes as well as small optimizations and improvements. Python 3.9 will be supported until approximately October 2025.

Python 3.8.12 is the second security-only patch for the legacy Python 3.8 series. In the meantime, it will remain supported until October 2024, though without regular maintenance releases.

PyCharm 2021.2.1 Gets Faster and Better

On an August 27th blog post, JetBrains announced the release of PyCharm 2021.2.1, which is the latest build of their extremely popular IDE for Python developers.

With Python 3.10 on the horizon, companies that provide tools for software developers in the Python ecosystem must prepare for the big changes that this new Python release will bring. PyCharm now provides support for new syntax constructs introduced in Python 3.10, such as structural pattern matching and union types.

On top of countless bug fixes, as well as performance and usability improvements, another interesting innovation in PyCharm is the shift from Python’s built-in venv module to the virtualenv library for virtual environment creation. This little change supposedly allows for a significant speedup by taking advantage of caching as well as linking to directories instead of copying them.

If you’re new to PyCharm, then you’ll appreciate the improved feature trainer plugin that comes with the IDE. It was added recently to teach you how to use the graphical user interface through interactive lessons. It now has new lessons devoted to working with Git repositories directly from the IDE.

The 2021 Django Developers Survey Went Live

On August 4th, the Django Software Foundation (DSF) announced that they’d started collecting input from Django developers all over the world to better understand how the community is using their web framework and related tools. In partnership with JetBrains, the goal of this survey was to gather knowledge to help them choose the right direction for development.

The survey is now closed, but it took about ten minutes to complete and was comprised of mostly multiple-choice questions. Hopefully, many of you Django users got a chance to share your valuable feedback.

The survey’s results will be aggregated, anonymized, and made available to the public. To get news about when the results will come out, you can follow the Django Software Foundation and JetBrains on social media.

Python Has a Packaging Project Manager

On August 18th, the Python Software Foundation (PSF) announced that Shamika Mohanan has accepted a newly opened position as Packaging Project Manager.

In last month’s news, you learned that the PSF hired Łukasz Langa as the first full-time CPython Developer-in-Residence. Thanks to the continued support of their sponsors, the non-profit organization has been able to hire another full-time employee with a secured two-year contract.

Shamika will be responsible for collecting feedback from the Python community about the challenges and ongoing projects and initiatives in the packaging ecosystem, focusing on improving the Python Package Index (PyPI). That’s great news, considering the landscape of packaging tools in Python has always been fragmented and doesn’t follow one specific standard.

Congratulations Shamika 👏

PyCon US 2022 Is Looking for Volunteers

On August 30th, the PyCon US organizers announced that they’re starting to look for volunteers who want to contribute their time and knowledge towards facilitating next year’s conference.

There are usually many opportunities to work as volunteer staff at PyCon. At the moment, however, the PSF is particularly interested in getting members for a committee responsible for the Call for Proposals process. It involves three broad tasks described in more detail in this Google Document.

What’s Next for Python?

August saw some exciting developments in Python. At Real Python, we’re excited about Python’s future and can’t wait to see what new things are in store for us in September.

What’s your favorite piece of Python news from August? Did we miss anything notable? Let us know in the comments, and we might feature you in next month’s Python news roundup.

Happy Pythoning!

🐍 Python Tricks 💌

Get a short & sweet Python Trick delivered to your inbox every couple of days. No spam ever. Unsubscribe any time. Curated by the Real Python team.

Python Tricks Dictionary Merge

About Bartosz Zaczyński

Bartosz is a bootcamp instructor, author, and polyglot programmer in love with Python. He helps his students get into software engineering by sharing over a decade of commercial experience in the IT industry.

» More about Bartosz

Each tutorial at Real Python is created by a team of developers so that it meets our high quality standards. The team members who worked on this tutorial are:

Master Real-World Python Skills With Unlimited Access to Real Python

Locked learning resources

Join us and get access to thousands of tutorials, hands-on video courses, and a community of expert Pythonistas:

Level Up Your Python Skills »

Master Real-World Python Skills
With Unlimited Access to Real Python

Locked learning resources

Join us and get access to thousands of tutorials, hands-on video courses, and a community of expert Pythonistas:

Level Up Your Python Skills »

What Do You Think?

Rate this article:

What’s your #1 takeaway or favorite thing you learned? How are you going to put your newfound skills to use? Leave a comment below and let us know.

Commenting Tips: The most useful comments are those written with the goal of learning from or helping out other students. Get tips for asking good questions and get answers to common questions in our support portal.


Looking for a real-time conversation? Visit the Real Python Community Chat or join the next “Office Hours” Live Q&A Session. Happy Pythoning!

Keep Learning

Related Tutorial Categories: community