Skip to content

Latest commit

 

History

History
75 lines (53 loc) · 1.69 KB

HACKING.md

File metadata and controls

75 lines (53 loc) · 1.69 KB

Running YAPF on itself

  • To run YAPF on all of YAPF:
$ pipx run --spec=${PWD} --no-cache yapf -m -i -r yapf/ yapftests/ third_party/
  • To run YAPF on just the files changed in the current git branch:
$ pipx run --spec=${PWD} --no-cache yapf -m -i $(git diff --name-only @{upstream})

Testing and building redistributables locally

YAPF uses tox 3 to test against multiple python versions and to build redistributables.

Tox will opportunistically use pyenv environments when available. To configure pyenv run the following in bash:

$ xargs -t -n1 pyenv install  < .python-version

Test against all supported Python versions that are currently installed:

$ pipx run --spec='tox<4' tox

Build and test the sdist and wheel against your default Python environment. The redistributables will be in the dist directory.

$ pipx run --spec='tox<4' tox -e bdist_wheel -e sdist

Releasing a new version

  1. Install all expected pyenv environements

    $ xargs -t -n1 pyenv install  < .python-version
  2. Run tests against Python 3.7 - 3.11 with

    $ pipx run --spec='tox<4' tox
  3. Bump version in yapf/_version.py.

  4. Build and test redistributables

    $ pipx run --spec='tox<4' tox -e bdist_wheel -e sdist
  5. Check that it looks OK.

    1. Install it onto a virtualenv,
    2. run tests, and
    3. run yapf as a tool.
  6. Push to PyPI:

    $ pipx run twine upload dist/*
  7. Test in a clean virtualenv that 'pip install yapf' works with the new version.

  8. Commit the version bump and add tag with:

    $ git tag v$(VERSION_NUM)
    $ git push --tags