Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Python 3.6 in typing_extensions #1006

Closed
wants to merge 13 commits into from
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]

runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ standard library, so that users can experiment with them before they are added t
standard library. Such features should ideally already be specified in a PEP or draft
PEP.

`typing_extensions` supports Python versions 3.6 and up.
`typing_extensions` supports Python versions 3.7 and up.

# Versioning scheme

Expand Down
18 changes: 18 additions & 0 deletions typing_extensions/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# Changes in version 4.2.0

Dropped support for Python 3.6 and simplified backports for Python 3.7.0 and
newer. Patch by Adam Turner (@AA-Turner).

## Removed in version 4.2.0

The following non-exported but non-private names have been removed as they are
unneeded for supporting Python 3.7 and newer.

- PEP_560
- GenericMeta
- KT
- T
- T_co
- T_contra
- VT

# Release 4.0.1 (November 30, 2021)

- Fix broken sdist in release 4.0.0. Patch by Adam Turner (@AA-Turner).
Expand Down
7 changes: 3 additions & 4 deletions typing_extensions/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ build-backend = "flit_core.buildapi"
# Project metadata
[project]
name = "typing_extensions"
version = "4.0.1"
description = "Backported and Experimental Type Hints for Python 3.6+"
version = "5.0.0"
description = "Backported and Experimental Type Hints for Python 3.7+"
readme.text = """\
Typing Extensions -- Backported and Experimental Type Hints for Python

Expand All @@ -22,7 +22,7 @@ Experimental types that may eventually be added to the ``typing``
module are also included in ``typing_extensions``.
"""
readme.content-type = "text/x-rst"
requires-python = ">=3.6"
requires-python = ">=3.7"
urls.Home = "https://github.com/python/typing/blob/master/typing_extensions/README.rst"
license.file = "LICENSE"
keywords = [
Expand All @@ -48,7 +48,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down
Loading