Skip to content

Commit 7e62c5c

Browse files
authored
asyncssh: bump to 2.11.0 (#23)
* asyncssh: bump to 2.11.0 * ci: update black pre-commit hook
1 parent 68abea5 commit 7e62c5c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/psf/black
5-
rev: 20.8b1
5+
rev: 22.3.0
66
hooks:
77
- id: black
88
- repo: https://github.com/pre-commit/mirrors-isort

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers =
1616
[options]
1717
install_requires =
1818
fsspec>=2021.8.1
19-
asyncssh>=2.7.1,<3
19+
asyncssh>=2.11.0,<3
2020
packages = find:
2121

2222
[options.extras_require]

sshfs/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
_FILE_EXISTS = os.strerror(errno.EEXIST)
1212

1313
# A copy of SFTP_BLOCK_SIZE (16KB)
14-
BASE_BLOCK_SIZE = 2 ** 14
14+
BASE_BLOCK_SIZE = 2**14
1515

1616
# Most of the SFTP implementations support reading a 64kb
1717
# and writing a 256kb chunk at a single request. We'll set

0 commit comments

Comments
 (0)