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

Commit 30e5ec8

Browse files
authored
Drop Python 3.5 support (#165)
In the process of making a new release, I realised we no longer builds Python 3.5 wheels. The new plan is to not make a 1.4.4 release and instead drop 3.5 support and make a 1.5.0 release Co-authored-by: hauntsaninja <>
1 parent a0068a4 commit 30e5ec8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ parser similar to the standard `ast` library. Unlike `ast`, the parsers in
99
comments and are independent of the version of Python under which they are run.
1010
The `typed_ast` parsers produce the standard Python AST (plus type comments),
1111
and are both fast and correct, as they are based on the CPython 2.7 and 3.7
12-
parsers. `typed_ast` runs on CPython 3.5-3.8 on Linux, OS X and Windows.
12+
parsers. `typed_ast` runs on CPython 3.6-3.10 on Linux, OS X and Windows.
1313

1414
## Development Philosophy
1515

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,14 +110,14 @@
110110
'Intended Audience :: Developers',
111111
'Operating System :: POSIX',
112112
'Operating System :: Microsoft',
113-
'Programming Language :: Python :: 3.5',
114113
'Programming Language :: Python :: 3.6',
115114
'Programming Language :: Python :: 3.7',
116115
'Programming Language :: Python :: 3.8',
117116
'Programming Language :: Python :: 3.9',
118117
'Programming Language :: Python :: 3.10',
119118
'Topic :: Software Development',
120119
],
120+
python_requires=">=3.6",
121121
packages = ['typed_ast', 'typed_ast.tests'],
122122
package_dir={ 'typed_ast.tests': 'ast3/tests' },
123123
ext_package='typed_ast',

typed_ast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.4"
1+
__version__ = "1.5.0.dev0"

0 commit comments

Comments
 (0)