8000 Implement PEP 526 Variable Annotations Syntax by ilevkivskyi · Pull Request #16 · python/typed_ast · GitHub
[go: up one dir, main page]

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

Implement PEP 526 Variable Annotations Syntax #16

Merged
merged 17 commits into from
Sep 27, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Hard-code version number
  • Loading branch information
ddfisher authored Sep 27, 2016
commit 2ea321284bbce6fdbcd202bbfccf471471e9c5ed
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
except ImportError:
from distutils.core import setup, Extension

import typed_ast

_ast27 = Extension(
'_ast27',
include_dirs = ['ast27/Include'],
Expand Down Expand Up @@ -84,7 +82,7 @@
""".strip()

setup (name = 'typed-ast',
version = typed_ast.__version__,
version = '0.6.0',
description = 'fork of Python 2 and 3 ast modules with type comment support',
long_description = long_description,
author = 'David Fisher',
Expand Down
0