Python 3.7 released
python.org
Python 3.7 released
1–10 of 56 posts
Re: Python 3.7 released
#2Re: Python 3.7 released
#3Does anyone know how long new versions of Python take to get into Homebrew? Will current Python 3.6 installations on Homebrew autoupdate to Python 3.7 when brew update/brew upgrade is run and the new version is packaged?
I don't see any pull requests yet.
3.5->3.6 python was updated in the same package, so I guess python 3.7 will replace python 3.6 too. You will get it after you run brew upgrade.
Re: Python 3.7 released
#4Does anyone know how long new versions of Python take to get into Homebrew? Will current Python 3.6 installations on Homebrew autoupdate to Python 3.7 when brew update/brew upgrade is run and the new version is packaged?
`brew install pyenv; pyenv install 3.7`
Re: Python 3.7 released
#5Does anyone know how long new versions of Python take to get into Homebrew? Will current Python 3.6 installations on Homebrew autoupdate to Python 3.7 when brew update/brew upgrade is run and the new version is packaged?
Re: Python 3.7 released
#6Does anyone know how long new versions of Python take to get into Homebrew? Will current Python 3.6 installations on Homebrew autoupdate to Python 3.7 when brew update/brew upgrade is run and the new version is packaged?
Try using https://github.com/pypa/pipenv
Re: Python 3.7 released
#7Does anyone know how long new versions of Python take to get into Homebrew? Will current Python 3.6 installations on Homebrew autoupdate to Python 3.7 when brew update/brew upgrade is run and the new version is packaged?
Re: Python 3.7 released
#8* Data classes (https://docs.python.org/3.7/library/dataclasses.html)
* New breakpoint() builtin (https://docs.python.org/3.7/library/functions.html#breakpoin...)
* Dictionaries preserve insertion order. (Implemented in 3.6, but now is part of the official spec.)
Re: Python 3.7 released
#9breakpoint() is certainly more memorable than the current incantation.
Re: Python 3.7 released
#10Notable parts of this release (IMO): * Data classes ( https://docs.python.org/3.7/library/dataclasses.html ) * New breakpoint() builtin ( https://docs.python.org/3.7/library/functions.html#breakpoin... ) * Dictionaries preserve insertion order. (Implemented in 3.6, but now is part of the official spec.)
Another notable part of this release is type annotations: