-
Notifications
You must be signed in to change notification settings - Fork 258
Remove typing-extensions #1189
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
Remove typing-extensions #1189
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
[](https://gitter.im/python/typing?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) | ||
|
||
Static Typing for Python | ||
======================== | ||
# Static Typing for Python | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oops, I think this was some markdown autoformatter. Let me know if you'd like me to undo it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good change, thanks unknown markdown formatter. |
||
|
||
Documentation and Support | ||
------------------------- | ||
## Documentation and Support | ||
|
||
The documentation for Python's static typing can be found at | ||
[typing.readthedocs.io](https://typing.readthedocs.io/). You can get | ||
|
@@ -16,26 +14,29 @@ Improvements to the type system should be discussed on the | |
mailing list, although the [issues](https://github.com/python/typing/issues) in this | ||
repository contain some historic discussions. | ||
|
||
Repository Content | ||
------------------ | ||
## Repository Content | ||
|
||
This GitHub repository is used for several things: | ||
|
||
- The `typing_extensions` module lives in the | ||
[typing\_extensions](./typing_extensions) directory. | ||
|
||
- The documentation at [typing.readthedocs.io](https://typing.readthedocs.io/) | ||
is maintained in the [docs directory](./docs). | ||
|
||
- A [discussion forum](https://github.com/python/typing/discussions) for typing-related user | ||
help is hosted here. | ||
|
||
Historically, this repository hosted a backport of the | ||
[`typing` module](https://docs.python.org/3/library/typing.html) for older | ||
Python versions. The last released version, supporting Python 2.7 and 3.4, | ||
is [available at PyPI](https://pypi.org/project/typing/). | ||
Historically, this repository also hosted: | ||
|
||
- The `typing_extensions` package, which now lives in the | ||
[typing_extensions](https://github.com/python/typing_extensions) repo. | ||
It used to be in the `typing_extensions` directory. | ||
|
||
- A backport of the | ||
[`typing` module](https://docs.python.org/3/library/typing.html) for older | ||
Python versions. It was removed after all Python versions that lack `typing` | ||
in the standard library reached end of life. The last released version, | ||
supporting Python 2.7 and 3.4, | ||
is [available at PyPI](https://pypi.org/project/typing/). | ||
|
||
Workflow | ||
-------- | ||
## Workflow | ||
|
||
See [CONTRIBUTING.md](/CONTRIBUTING.md) for more. |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we even need to run flake8? The only python code left is the typing-summary script in scripts.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is also
docs/conf.py
. I don't feel strongly, I can remove it if you feel we don't need linting for those.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the other hand, linting can't hurt, and who knows whether we add more scripts later. So I retract my comment.