Skip to content

Releases: hhatto/autopep8

v2.0.0

28 Oct 13:23
06efa44
Compare
Choose a tag to compare

version 1.7.1 is yanked.

release version 2.0.0

v1.7.1

28 Oct 01:24
89e9fbd
Compare
Choose a tag to compare

What's Changed

  • Cleanup Python 2 references in setup.py by @geozeke in #644
  • include tox.ini (because need unit test) by @hhatto in #646
  • Fix E265 and E266 confusion and overlap by @PeterJCLaw in #650
  • Use tomli in place of unmaintained toml package by @mgorny in #629
  • fix: special case of auto value with flake8 config by @hhatto in #653

New Contributors

Full Changelog: v1.7.0...v1.7.1

v1.7.0

09 Aug 12:51
0a64c5d
Compare
Choose a tag to compare

Change

New Feature

  • Support E275

Bug Fix


What's Changed

New Contributors

Full Changelog: v1.6.0...v1.7.0

v1.6.0

24 Oct 07:01
f192115
Compare
Choose a tag to compare

Change

Buf Fix

  • #607 , #608 : Ignore Settings for W292 Do Not Work
  • #603 , #604 : Multiple #autopep8: off/on directives in one file do not work ( Thanks @SPKorhonen )
  • #612 , #618 : --hang-closing option does not work for non-indented lines

v1.5.7

30 Apr 06:09
32c78a3
Compare
Choose a tag to compare

Change

  • #597: disallow 0 for indent-size option
  • #595: exit code is 99 when error occured cli option parsing

Bug Fix

  • #591, #592: exit code correctly on permission denied failure

v1.5.6

17 Mar 10:59
3dc32d2
Compare
Choose a tag to compare

Update

Bug Fix

  • #585 : E128 check similar to pycodestyle (Thanks @yamt )

v1.5.5

04 Feb 07:28
ae7b7de
Compare
Choose a tag to compare

bug fix and minor improvements

  • improvement
    • #566: lazy load toml package
  • fix bug
    • #580: not convert raw string for w605 fixed method

Version 1.5.4

02 Aug 03:41
972093d
Compare
Choose a tag to compare
  • new feature
    • Skip formatting of a block in a file
  • fix bugs
    • #551, #553: ignoring W292 with --ignore option
    • #564, #565: ignore SyntaxWarning in Python3.8+

version 1.5.3

31 May 14:22
9d82181
Compare
Choose a tag to compare
  • changes
    • requirement pycodestyle version 2.6.0+ ( #548 )
  • fix bugs
    • Expected pyproject.toml configuration syntax incompatible with TOML format ( #528 , #546 )
    • Fix incompatible exit code with --jobs=0 and --exit-code ( #543 , #545 )
    • Fix hangup E122 fixed method with backslash ( #540 , #541 )

version 1.5.2

20 Apr 12:06
84cb34c
Compare
Choose a tag to compare
  • new features
    • #480, #535 : support parallel jobs for diff option
  • changes
    • #501, #537 : enable exclude option when specify directly file args
  • fix bugs
    • #364, #538 : related code E702
    • #533 : related code W503/W504