Ignore venv and README when building docs (#843)

* Ignore venv and README when building docs

This suppresses warnings during the docs build if the venv directory
exists.

* Remove html static path from Sphinx config

Fixes another Sphinx warning
1 file changed
tree: 24ce25f5b46cc1a3e6bc040dd24ebb61fb4595b5
  1. docs/
  2. drafts/
  3. python2/
  4. src/
  5. typing_extensions/
  6. .flake8-tests
  7. .gitignore
  8. .travis.yml
  9. CONTRIBUTING.md
  10. LICENSE
  11. MANIFEST.in
  12. README.md
  13. setup.cfg
  14. setup.py
  15. test-requirements.txt
  16. tox.ini
  17. update-mypy.sh
  18. update-stdlib.sh
README.md

Chat at https://gitter.im/python/typing

PEP 484: Type Hints

This GitHub repo is used for three separate things:

  • The issue tracker is used to discuss PEP-level type system issues. However, typing-sig is more appropriate these days.

  • A backport of the typing module for older Python versions (2.7 and 3.4) is maintained here. Note that the canonical source lives upstream in the CPython repo.

  • The typing_extensions module lives here.

Workflow

  • See CONTRIBUTING.md for more.

  • The typing.py module and its unittests are edited in the src subdirectory of this repo. The python2 subdirectory contains the Python 2 backport.