Skip to content

Commit e90b7c5

Browse files
dvora-hZaczerodependabot[bot]
authored
Cherry pick for v5.0.3 (#3178)
* Fix lock error (#3176) * Remove redundant async-timeout dependency in modern Python (#3177) #3174 * Bump rojopolis/spellcheck-github-actions from 0.35.0 to 0.36.0 (#3172) Bumps [rojopolis/spellcheck-github-actions](https://github.com/rojopolis/spellcheck-github-actions) from 0.35.0 to 0.36.0. - [Release notes](https://github.com/rojopolis/spellcheck-github-actions/releases) - [Changelog](https://github.com/rojopolis/spellcheck-github-actions/blob/master/CHANGELOG.md) - [Commits](rojopolis/spellcheck-github-actions@0.35.0...0.36.0) --- updated-dependencies: - dependency-name: rojopolis/spellcheck-github-actions dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump release-drafter/release-drafter from 5 to 6 (#3171) Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5 to 6. - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](release-drafter/release-drafter@v5...v6) --- updated-dependencies: - dependency-name: release-drafter/release-drafter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Kamil Monicz <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 535f90e commit e90b7c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/release-drafter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
# Drafts your next Release notes as Pull Requests are merged into "master"
19-
- uses: release-drafter/release-drafter@v5
19+
- uses: release-drafter/release-drafter@v6
2020
with:
2121
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
2222
config-name: release-drafter-config.yml

.github/workflows/spellcheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- name: Checkout
99
uses: actions/checkout@v4
1010
- name: Check Spelling
11-
uses: rojopolis/spellcheck-github-actions@0.35.0
11+
uses: rojopolis/spellcheck-github-actions@0.36.0
1212
with:
1313
config_path: .github/spellcheck-settings.yml
1414
task_name: Markdown

redis/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class LockError(RedisError, ValueError):
8282
# NOTE: For backwards compatibility, this class derives from ValueError.
8383
# This was originally chosen to behave like threading.Lock.
8484

85-
def __init__(self, message, lock_name=None):
85+
def __init__(self, message=None, lock_name=None):
8686
self.message = message
8787
self.lock_name = lock_name
8888

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
install_requires=[
3939
'importlib-metadata >= 1.0; python_version < "3.8"',
4040
'typing-extensions; python_version<"3.8"',
41-
'async-timeout>=4.0.3',
41+
'async-timeout>=4.0.3; python_full_version<"3.11.3"',
4242
],
4343
classifiers=[
4444
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)