Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Drop Python 3.5 support #165

Merged
merged 2 commits into from Oct 11, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -9,7 +9,7 @@ parser similar to the standard `ast` library. Unlike `ast`, the parsers in
comments and are independent of the version of Python under which they are run.
The `typed_ast` parsers produce the standard Python AST (plus type comments),
and are both fast and correct, as they are based on the CPython 2.7 and 3.7
parsers. `typed_ast` runs on CPython 3.5-3.8 on Linux, OS X and Windows.
parsers. `typed_ast` runs on CPython 3.6-3.10 on Linux, OS X and Windows.

## Development Philosophy

Expand Down
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -110,7 +110,6 @@
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Operating System :: Microsoft',
'Programming Language :: Python :: 3.5',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should probably also add python_requires='>3.5', as well.

'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down
2 changes: 1 addition & 1 deletion typed_ast/__init__.py
@@ -1 +1 @@
__version__ = "1.4.4"
__version__ = "1.5.0.dev0"