Skip to content
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6b757ef
add type hints
honglei Jul 3, 2023
855342f
fix indent error in ftpbench.py/bytes_per_second
honglei Jul 4, 2023
c85b9c4
ftpbench.py now use python3
honglei Jul 4, 2023
9c46f22
follow PEP8
honglei Jul 4, 2023
d4704d7
use autopep8 to fix PEP8
honglei Jul 4, 2023
9f4c632
fix PEP8 line length
honglei Jul 4, 2023
37bfebc
remove white space in line
honglei Jul 4, 2023
15790b5
Update ci.yml
honglei Jul 4, 2023
349b373
type hints use Python3.10+
honglei Jul 8, 2023
fb0b52f
solve flake8 warning
honglei Jul 8, 2023
4e95b2f
autopep8
honglei Jul 8, 2023
bf52d09
aioftp need Python3.10+
honglei Jul 8, 2023
c17a281
future-annotations-import-pep-563
honglei Jul 8, 2023
d80d734
ignore flake8 q000: double quotes found but single quotes preferred
honglei Jul 10, 2023
69c4b85
add missing type hints in client.py
honglei Jul 10, 2023
39df58d
add missing test for `SIZE`(rfc3659)
honglei Jul 10, 2023
e7a7b2b
match flake8
honglei Jul 10, 2023
5b75298
add test for 'SIZE'
honglei Jul 14, 2023
9398c6a
remove not used code
honglei Jul 14, 2023
cea2871
Update test_file.py
honglei Jul 14, 2023
fa13c7d
Merge branch 'aio-libs:master' into master
honglei Jul 14, 2023
3cfddf7
for pass mypy
honglei Aug 8, 2023
ebda8da
Merge branch 'master' of https://github.com/honglei/aioftp
honglei Aug 8, 2023
e2b61f1
black it.
honglei Aug 8, 2023
539cc52
line<=79
honglei Aug 8, 2023
22aaa3b
ci.yml add mypy
honglei Aug 8, 2023
28f8500
Update ci.yml
honglei Aug 8, 2023
4994839
fix mypy import error
honglei Aug 8, 2023
dbe5133
black
honglei Aug 8, 2023
feeafec
fix StreamThrottle
honglei Aug 8, 2023
5155e91
update linters
pohmelie Aug 12, 2023
b6ec758
partial work
honglei Aug 13, 2023
0cc53ff
ruff it
honglei Aug 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.10','3.11']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -32,6 +32,7 @@ jobs:
with:
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}

deploy:
needs: tests
Expand Down
Loading