Python 3.7.12 and 3.6.15, the lastest security fix rollups for Python 3.7 and Python 3.6, are now available. You can find the release files, links to the changelogs, and more information here:
https://www.python.org/downloads/release/python-3615/
Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
History is littered with hundreds of conflicts over the future of a community, group, location or business that were "resolved" when one of the parties stepped ahead and destroyed what was there. With the original point of contention destroyed, the debates would fall to the wayside. Archive Team believes that by duplicated condemned data, the conversation and debate can continue, as well as the richness and insight gained by keeping the materials. Our projects have ranged in size from a single volunteer downloading the data to a small-but-critical site, to over 100 volunteers stepping forward to acquire terabytes of user-created data to save for future generations.
The main site for Archive Team is at archiveteam.org and contains up to the date information on various projects, manifestos, plans and walkthroughs.
This collection contains the output of many Archive Team projects, both ongoing and completed. Thanks to the generous providing of disk space by the Internet Archive, multi-terabyte datasets can be made available, as well as in use by the Wayback Machine, providing a path back to lost websites and work.
Our collection has grown to the point of having sub-collections for the type of data we acquire. If you are seeking to browse the contents of these collections, the Wayback Machine is the best first stop. Otherwise, you are free to dig into the stacks to see what you may find.
The Archive Team Panic Downloads are full pulldowns of currently extant websites, meant to serve as emergency backups for needed sites that are in danger of closing, or which will be missed dearly if suddenly lost due to hard drive crashes or server failures.

Python 3.7.12 and 3.6.15, the lastest security fix rollups for Python 3.7 and Python 3.6, are now available. You can find the release files, links to the changelogs, and more information here:
Python 3.7.10 and 3.6.13, the lastest security fix rollups for Python 3.7 and Python 3.6, are now available. You can find the release files, links to the changelogs, and more information here:
On
behalf of the Python Packaging Authority and the pip team, I am pleased to announce that we have just released
pip 20.3, a new version of pip. You can install it by running python -m pip install --upgrade pip.
This is an important and disruptive release -- we explained why in a blog post last year. We've even made a video about it.
DISRUPTION: Switch to the new dependency resolver by default. Watch out for changes in handling editable installs, constraints files, and more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020
DEPRECATION: Deprecate support for Python 3.5 (to be removed in pip 21.0).
DEPRECATION: pip freeze will stop filtering the pip,
setuptools, distribute and wheel packages from pip freeze output in a
future version. To keep the previous behavior, users should use the new
--exclude option.
Substantial improvements in new resolver for performance, output and error messages, avoiding infinite loops, and support for constraints files.
Support for PEP 600: Future manylinux Platform Tags for Portable Linux Built Distributions.
Documentation improvements: Resolver migration guide, quickstart guide, and new documentation theme.
Add support for MacOS Big Sur compatibility tags.
The new resolver is now on by default for Python 3 users. It is significantly
stricter and more consistent when it receives incompatible instructions,
and reduces support for certain kinds of constraints files, so some
workarounds and workflows may break. Please see our guide on how to test and migrate, and how to report issues. You can use the deprecated (old) resolver, using the flag --use-deprecated=legacy-resolver, until we remove it in the pip 21.0 release in January 2021.
You can find more details (including deprecations and removals) in the changelog.
python -m pip install --upgrade pipThe highlights for this release are:
pip list --outdated, by parallelizing network
access. This is the first instance of parallel code within pip's codebase.pip cache command, which makes it possible to introspect and manage
pip's cache directory.pip freeze for packages installed from direct URLs, enabled by the
implementation of PEP 610.