-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update dependency wemake-python-styleguide to v0.19.2 #37
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/wemake-python-styleguide-0.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
force-pushed
the
renovate/wemake-python-styleguide-0.x
branch
from
November 20, 2022 13:01
25ae42d
to
6f28a74
Compare
renovate
bot
changed the title
chore(deps): update dependency wemake-python-styleguide to v0.17.0
Update dependency wemake-python-styleguide to v0.17.0
Dec 17, 2022
renovate
bot
changed the title
Update dependency wemake-python-styleguide to v0.17.0
chore(deps): update dependency wemake-python-styleguide to v0.17.0
Dec 17, 2022
renovate
bot
force-pushed
the
renovate/wemake-python-styleguide-0.x
branch
from
March 16, 2023 08:54
6f28a74
to
4de4d04
Compare
renovate
bot
force-pushed
the
renovate/wemake-python-styleguide-0.x
branch
2 times, most recently
from
May 31, 2023 18:08
7ac85de
to
15ff841
Compare
renovate
bot
changed the title
chore(deps): update dependency wemake-python-styleguide to v0.17.0
chore(deps): update dependency wemake-python-styleguide to v0.18.0
May 31, 2023
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: poetry.lock
|
renovate
bot
force-pushed
the
renovate/wemake-python-styleguide-0.x
branch
from
March 25, 2024 23:33
15ff841
to
b53cd68
Compare
renovate
bot
changed the title
chore(deps): update dependency wemake-python-styleguide to v0.18.0
chore(deps): update dependency wemake-python-styleguide to v0.19.0
Mar 25, 2024
renovate
bot
force-pushed
the
renovate/wemake-python-styleguide-0.x
branch
from
March 26, 2024 14:07
b53cd68
to
4a525a5
Compare
renovate
bot
changed the title
chore(deps): update dependency wemake-python-styleguide to v0.19.0
chore(deps): update dependency wemake-python-styleguide to v0.19.1
Mar 26, 2024
renovate
bot
force-pushed
the
renovate/wemake-python-styleguide-0.x
branch
from
March 26, 2024 18:04
4a525a5
to
9ab5138
Compare
renovate
bot
changed the title
chore(deps): update dependency wemake-python-styleguide to v0.19.1
chore(deps): update dependency wemake-python-styleguide to v0.19.2
Mar 26, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.16.1
->0.19.2
Release Notes
wemake-services/wemake-python-styleguide (wemake-python-styleguide)
v0.19.2
Compare Source
Bugfixes
WrongEmptyLinesCountViolation
crash onCallable[..., ...]
#2899v0.19.1
Compare Source
This release fixes how
...
is used. For example, it is common to definefunction stubs / protocols like this:
Now,
...
will be excluded from several rules.Bugfixes
TooDeepNestingViolation
not to triggeron
...
in functions and classesStatementHasNoEffectViolation
not to triggeron
...
in functions and classes, when it is the only nodev0.19.0
Compare Source
This minor version will be the last release with all the
flake8
plugins.In the future this project will be migrated to be used together with
ruff
.Features
python3.12
supportpython3.8
supportobject
required base class exception:since
class Klass[_Type]
must not containobject
,this rule is change to be the opposite:
object
explicit base class must not be used.You can use
ruff
to change allobject
-based types to the new style:ruff check --select=UP004 --fix .
https://docs.astral.sh/ruff/rules/useless-object-inheritance/
since it is required by
mypy
when usingConcatenate
f
-string are parsed inpython3.12
several token-basedviolations are not reported anymore for them:
WrongMultilineStringViolation
,ImplicitRawStringViolation
,WrongUnicodeEscapeViolation
,RawStringNotNeededViolation
wemake
output formatter now respectsNO_COLOR=1
optionto disable text highlighting. See https://no-color.org
ImportObjectCollisionViolation
to detectthe same objects imported under different aliases
reveal_locals
to the list of forbidden functionsflake8
to7.x
Bugfixes
ForbiddenInlineIgnoreViolation
config parsing. #2590WrongEmptyLinesCountViolation
for func definitions with ellipsis. #2847WrongEmptyLinesCountViolation
for multiline implicit string concatination. #2787ObjectInBaseClassesListViolation
,UnpythonicGetterSetterViolation
,ImplicitInConditionViolation
,RedundantSubscriptViolation
,TooLongCompareViolation
to include better error detailsTooDeepNestingViolation
forTryStar
andMatch
statementsTooLongTryBodyViolation
andTooManyExceptCasesViolation
to work for
TryStar
statements as wellUselessNodeViolation
to work withTryStar
DuplicateExceptionViolation
to work withTryStar
TryExceptMultipleReturnPathViolation
to work withTryStar
IncorrectExceptOrderViolation
to work withTryStar
MatchStar
was not checked in pattern matching name assignmentsin
BlockAndLocalOverlapViolation
andOuterScopeShadowingViolation
Misc
flake8-*
dependenciesv0.18.0
Compare Source
Features
python3.7
support, because it has almost reached its EOLpython3.11
supportflake8
to version5.x
flake8-*
dependencies to newer versionsChainedIsViolation
#2443BuggySuperContextViolation
#2310Bugfixes
generic_visit()
check script properly handlewith
statements.Misc
flakehell
mentions toflakeheaven
#2409v0.17.0
Compare Source
Features
python3.6
support--show-violation-links
option to show links to violation docs__init_subclass__
in the beginning of accepted methodsorder as per WPS338 #2411
WrongEmptyLinesCountViolation
to checkfor too many lines in functions and methods definitions #2486
Bugfixes
WPS226
false positives on|
use inSomeType | AnotherType
type hints syntax
-1
is not reported to be an overused expression__aiter__
to be async iteratorYieldMagicMethodViolation
Misc
BaseViolation.full_code
#2409for
max-string-usages
and enforced rule #2456wemake-python-stylegui.de
to
wemake-python-styleguide.rtfd.io
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.