Monday, January 17, 2022

Python News: What's New From December 2021?

In December 2021, the fourth Python steering council was elected, as usual with a mix of new and returning members. Python’s release-cycle circle of life kept spinning, with new iterations of both Python 3.10 and the upcoming Python 3.11 released. At the same time, the popular Python 3.6 reached end-of-life and will no longer be supported.

Amid this flurry of activity, developers from all over had some fun over the holidays by solving the annual Advent of Code puzzles.

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

Python Steering Council Elections

Guido van Rossum is the creator of Python. For a long time, he was also the Benevolent Dictator For Life (BDFL) of the language, in charge of overseeing all changes that were implemented.

During the summer of 2018, Guido resigned as BDFL and asked the community to come up with a new model for governance of the language. After some discussion, the community decided that a steering council should be elected to direct the development of Python.

A new steering council is elected regularly, more or less coinciding with each release of Python. The terms are therefore often labeled by the corresponding version of Python that will be released during that term. The most recent election, for the Python 3.11 term, was held in the first half of December, with the final results announced on December 17.

Since the first steering council was elected in January 2019, the following members have served:

  • Barry Warsaw (3.8, 3.9, 3.10)
  • Brett Cannon (3.8, 3.9, 3.10)
  • Carol Willing (3.8, 3.9, 3.10)
  • Guido van Rossum (3.8)
  • Nick Coghlan (3.8)
  • Pablo Galindo Salgado (3.10)
  • Thomas Wouters (3.9, 3.10)
  • Victor Stinner (3.9)

Read the full article at https://realpython.com/python-news-december-2021/ »


[ Improve Your Python With 🐍 Python Tricks 💌 – Get a short & sweet Python Trick delivered to your inbox every couple of days. >> Click here to learn more and see examples ]



from Real Python
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...