Skip to main content

Type annotations for the Traits package

Project description

The traits-stubs package contains external type annotations for the Traits package. These annotations can be used with static type checkers like mypy to type-check your Traits-using Python code.

Installation

  • To install from PyPI, simply use pip install traits-stubs.

  • To install from source, run pip install . from this directory.

Usage

You’ll usually want to install mypy (or another type checker) into your Python environment alongside these stubs. You can then use mypy from the command line to check a file or directory, for example with:

mypy <somefile.py>

Alternatively, some IDEs (including VS Code and PyCharm) can be configured to perform type checking as you edit.

Development

To test traits stubs locally:

  • Create a fresh venv and activate it, for example with:

    $ python -m venv --clear ~/.venvs/traits-stubs && source ~/.venvs/traits-stubs/bin/activate
  • Make sure all build-related packages are up to date

    $ python -m pip install –upgrade pip setuptools wheel

  • Install the Traits library into the environment (non-editable install)

    $ python -m pip install .

  • Install traits stubs in editable mode (from the repo, not from PyPI).

    $ python -m pip install -e traits-stubs/

  • Install mypy (or your favourite type checker)

    $ python -m pip install mypy

  • From the traits-stubs directory, run mypy on individual files in traits_stubs_tests/examples with e.g.,

    $ python -m mypy traits_stubs_tests/examples/completeness.py

  • From the traits-stubs directory, run the test suite with:

    $ python -m unittest discover -v traits_stubs_tests

Note: it’s easy to get confusing results if you accidentally use the wrong version of mypy. To avoid that, you can make sure that you don’t have mypy installed globally, and/or always invoke mypy using python -m mypy from within the environment.

Note: the unittest run can give the wrong result in the presence of a stale .mypy_cache. If you’re getting a pass where you expect to get a failure (or vice versa), try deleting the local cache and trying again.

Dependencies

This package depends on Traits.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

traits-stubs-6.4.0.tar.gz (20.1 kB view hashes)

Uploaded Source

Built Distribution

traits_stubs-6.4.0-py3-none-any.whl (45.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page