Revisions of python-pyupgrade

Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 58)
- update to version 2.32.1:
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 57)
- update to version 2.32.1:
 - Do not remove quoted annotations on 3.11
   `from __future__ import annotations` will not be the default
   behavior on 3.11.
   Fixes #637.
- update to version 2.32.0:
 - rewrite check_output(...) universal_newlines -> text
 - convert fstring rewriter to a plugin
 - move typed class rewrite to a plugin
 - change is_name_attr to accept multiple modules
 - reorder pre-commit config
   Committed via https://github.com/asottile/all-repos
 - Update default branch to main
   Committed via https://github.com/asottile/all-repos
 - remove unneeded gitignore lines
   - coverage-html: coverage>=6.2 writes a .gitignore file
   - mypy_cache: mypy>=0.770 writes a .gitignore file
   - pytest_cache: pytest>=3.8.1 writes a .gitignore file
   - venv: virtualenv>=20.0.21 writes a .gitignore file
   Committed via https://github.com/asottile/all-repos
buildservice-autocommit accepted request 970417 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 56)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 55)
- update to version 2.32.0:
 - rewrite check_output(...) universal_newlines -> text
 - convert fstring rewriter to a plugin
 - move typed class rewrite to a plugin
 - change is_name_attr to accept multiple modules
 - reorder pre-commit config
   Committed via https://github.com/asottile/all-repos
 - Update default branch to main
   Committed via https://github.com/asottile/all-repos
 - remove unneeded gitignore lines
   - coverage-html: coverage>=6.2 writes a .gitignore file
   - mypy_cache: mypy>=0.770 writes a .gitignore file
   - pytest_cache: pytest>=3.8.1 writes a .gitignore file
   - venv: virtualenv>=20.0.21 writes a .gitignore file
   Committed via https://github.com/asottile/all-repos
- update to version 2.31.1:
 - dont rewrite universal_newlines if text or **kwargs present
 - upgrade flake8-typing-imports
   Committed via https://github.com/asottile/all-repos
 - drop python3.6 support
   python 3.6 reached end of life on 2021-12-23
   Committed via https://github.com/asottile/all-repos
 - remove --fail-under from tox (covdefaults handles this)
   Committed via https://github.com/asottile/all-repos
 - Use diff syntax in more places in the docs
buildservice-autocommit accepted request 961980 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 54)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 53)
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 52)
- update to version 2.31.1:
 - dont rewrite universal_newlines if text or **kwargs present
 - upgrade flake8-typing-imports
   Committed via https://github.com/asottile/all-repos
 - drop python3.6 support
   python 3.6 reached end of life on 2021-12-23
   Committed via https://github.com/asottile/all-repos
 - remove --fail-under from tox (covdefaults handles this)
   Committed via https://github.com/asottile/all-repos
 - Use diff syntax in more places in the docs
- update to version 2.31.0:
 - rewrite string formatting with **locals()
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 51)
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 50)
- update to version 2.31.0:
 - rewrite string formatting with **locals()
- update to version 2.30.1:
 - don't rewrite six.reraise with named args
- update to version 2.30.0:
 - rewrite abspath(__file__) to __file__ in py39+
 - fix __path__ type annotation
 - fix the diff output of `forced str("native") literals` section
 - improve coverage pragmas with covdefaults 2.1
 - Use org-default .github/FUNDING.yml
   Committed via https://github.com/asottile/all-repos
 - Rewrite docs examples with commented code to use diffs
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 49)
- update to version 2.30.0:
 - rewrite abspath(__file__) to __file__ in py39+
 - fix __path__ type annotation
 - fix the diff output of `forced str("native") literals` section
 - improve coverage pragmas with covdefaults 2.1
 - Use org-default .github/FUNDING.yml
   Committed via https://github.com/asottile/all-repos
 - Rewrite docs examples with commented code to use diffs
- update to version 2.29.1:
 - prevent rewriting union types with forward annotations
 - replace exit(main()) with raise SystemExit(main())
   Committed via https://github.com/asottile/all-repos
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 48)
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 47)
- - update to version 2.29.1:
 - prevent rewriting union types with forward annotations
 - replace exit(main()) with raise SystemExit(main())
   Committed via https://github.com/asottile/all-repos
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 46)
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 45)
- update to version 2.29.0:
 - Revert "Merge pull request #320 from asottile/new_class_super_v2"
   This reverts commit b3f8c7b2e9ccb06c6028d5dd90c8f5490a49e95b, reversing
   changes made to 41308214566af7c5589ebc7e8a760522c82dc3bc.
 - Revert "Merge pull request #545 from asottile/skip-staticmethod"
   This reverts commit 8768d42facdaa1ef771a5a689b11329a54afd00a, reversing
   changes made to a2f517f0103c1f74bffbc06be510bcec4cd181ec.
- update to version 2.28.1:
 - don't rewrite old-super for staticmethods
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 44)
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 43)
- update to version 2.28.0:
 - don't rewrite old super calls for __new__
 - fix super replacement of multiple lines
 - Fix bug with calling different superclass method
 - Revert "Revert "Merge pull request #317 from asottile/old_super""
   This reverts commit 2719335fa7bdb582b35ac90547a0f763d4225036.
 - fix raise_from with multi lines / trailing commas
 - fix rewrite causing syntax error when the first arg has newlines
 - fix invalid dedent with comment after block
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 42)
Fix Source URL in the SPEC file.
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 41)
fix files
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 40)
- update to version 2.27.0:
 - handle named escape sequences in format upgrades
 - remove splatting of listcomp -> splat of generator
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 39)
Displaying revisions 21 - 40 of 78
openSUSE Build Service is sponsored by