Skip to main content

Update Python typing syntax

Project description

Python typing update

PyPI PyPI - Python Version GitHub image

Tool to update Python typing syntax. It uses token analysis and

to try and update the typing syntax the best it can.

Important
Every project uses a different formatting style, so always check git diff before comitting any changes! Since this tool uses pyupgrade, it's best used for projects that use it already.

Limitations

Due to the way the tool works, it will reorder the imports multiple times. By default the tool tries to detect if a comment was moved and revert all changes to the file. This can be overwritten by using --force.

Currently, it's not possible to update aliases with a different name. In particular, these need to be updated manually:

Old typing name New
Deque collections.deque
DefaultDict collections.defaultdict
AbstractSet collections.abc.Set
ContextManager contextlib.AbstractContextManager
AsyncContextMananger contextlib.AbstractAsyncContextManager

How it works

  1. Run python-reorder-import to add from __future__ import annotations to each file.
  2. Run pyupgrade to use generic aliases (PEP 585) and alternative union syntax (PEP 604) where possible.
  3. Run autoflake to check if any typing import is now unused. If not, revert changes with git restore.
  4. Remove unused imports with autoflake.
  5. Run isort to try to restore the previous formatting.
  6. Optional: Run black. (Requires black to be added as additional_dependency)
    OR: Run ruff. (Requires ruff to be added as additional_dependency)
  7. Check git diff for modified comments. If one is detected, revert changes and print file name. Can be overwritten with --force.

Setup pre-commit

Add this to the .pre-commit-config.yaml file

repos:
  - repo: https://github.com/cdce8p/python-typing-update
    rev: <insert current tag here!>
    hooks:
      - id: python-typing-update
        stages: [manual]

Run with

pre-commit run --hook-stage manual python-typing-update --all-files

Configuration

--verbose
Always print verbose logging.

--limit
Max number of files that should be changed. No performance improvements, since the limit is only applied after all files have been processed.

--concurrent-files
Number of files to process concurrently during initial load.

--full-reorder
Use additional options from python-reorder-imports to rewrite

  • Imports from mypy_extensions and typing_extensions when possible.

--keep-updates
Keep updates even if no import was removed. Use with caution, might result in more errors.

--black
Run black formatting after updates.
To use it, add black as additional_dependency in your .pre-commit-config.yaml.

        additional_dependencies:
          - black==<insert current version here!>

--ruff
Run ruff check --fix and ruff format after updates.
To use it, add ruff as additional_dependency in your .pre-commit-config.yaml.

        additional_dependencies:
          - ruff==<insert current version here!>

--disable-committed-check
Don't abort with uncommitted changes. Don't use it in production! Risk of losing uncommitted changes.

Different mode options

--check
Check if files would be modified. Return with exitcode 1 or 0 if not. Useful for CI runs.

--force
Don't revert changes if a modified comment is detected. Check git diff before committing!

--only-force
Only update files which are likely to require extra work. Check git diff before committing!

Python version options

--py310-plus
Set the minimum Python syntax version to 3.10. This is the default.

--py311-plus
Set the minimum Python syntax version to 3.11. (Default: 3.10)

--py312-plus
Set the minimum Python syntax version to 3.12. (Default: 3.10)

--py313-plus
Set the minimum Python syntax version to 3.13. (Default: 3.10)

--py314-plus
Set the minimum Python syntax version to 3.14. (Default: 3.10)

License

This Project is licensed under the MIT license. See LICENSE for the full license text.

Project details


Download files

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

Source Distribution

python_typing_update-0.8.1.tar.gz (14.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_typing_update-0.8.1-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file python_typing_update-0.8.1.tar.gz.

File metadata

  • Download URL: python_typing_update-0.8.1.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for python_typing_update-0.8.1.tar.gz
Algorithm Hash digest
SHA256 c379f3dfd14c371e045d33c40f9c93f89d93a8fba6db1e4b82eb1bc541d1d3a9
MD5 e56217737775818419750d1b7b2f3acb
BLAKE2b-256 5a738032b5c7fa41a648628d448da2a77e29b2a097639a29c2cee7cc1c8ecfd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_typing_update-0.8.1.tar.gz:

Publisher: release.yaml on cdce8p/python-typing-update

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_typing_update-0.8.1-py3-none-any.whl.

File metadata

File hashes

Hashes for python_typing_update-0.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5c67dc1a9985cdc1a0140cc34ac8236a74babbbf32ea693862ade5ee74c0c8f3
MD5 6372a064c23182932077a53d3e06d230
BLAKE2b-256 d27f46ebcea592743dce20666af5270ad217c3c9c2d4beb199fb9558dfceb65b

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_typing_update-0.8.1-py3-none-any.whl:

Publisher: release.yaml on cdce8p/python-typing-update

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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