Skip to content

Commit 25967b2

Browse files
authoredJan 10, 2024
chore(deps): move Self import from typing to typing_extensions (#183)
* fix(typing_Self): import Self from typing_extensions * adding requirement file
1 parent 376d330 commit 25967b2

File tree

4 files changed

+529
-473
lines changed

4 files changed

+529
-473
lines changed
 

‎poetry.lock

+493-472
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ elasticsearch = { version = "7.16.2", extras=["preprocessing"] }
2929
bigtree = "^0.12.2"
3030
aioftp = "^0.21.4"
3131
humanize = "^4.8.0"
32+
typing-extensions = "^4.9.0"
3233

3334
[tool.poetry.group.dev.dependencies]
3435
compose-go = "^2.21.0"

‎pysus/ftp/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
import pathlib
55
from datetime import datetime
66
from ftplib import FTP
7-
from typing import Any, Dict, List, Optional, Set, Union, Self
7+
from typing import Any, Dict, List, Optional, Set, Union
8+
from typing_extensions import Self
89

910
import humanize
1011
from aioftp import Client

‎requirements.txt

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
aioftp==0.21.4 ; python_version >= "3.10" and python_version < "3.12"
2+
bigtree==0.12.5 ; python_version >= "3.10" and python_version < "3.12"
3+
certifi==2023.11.17 ; python_version >= "3.10" and python_version < "3.12"
4+
cffi==1.15.1 ; python_version >= "3.10" and python_version < "3.12"
5+
colorama==0.4.6 ; python_version >= "3.10" and python_version < "3.12" and (platform_system == "Windows" or sys_platform == "win32")
6+
cramjam==2.7.0 ; python_version >= "3.10" and python_version < "3.12"
7+
dateparser==1.2.0 ; python_version >= "3.10" and python_version < "3.12"
8+
dbfread==2.0.7 ; python_version >= "3.10" and python_version < "3.12"
9+
elasticsearch[preprocessing]==7.16.2 ; python_version >= "3.10" and python_version < "3.12"
10+
fastparquet==2023.10.1 ; python_version >= "3.10" and python_version < "3.12"
11+
fsspec==2023.12.2 ; python_version >= "3.10" and python_version < "3.12"
12+
humanize==4.9.0 ; python_version >= "3.10" and python_version < "3.12"
13+
loguru==0.6.0 ; python_version >= "3.10" and python_version < "3.12"
14+
numpy==1.26.2 ; python_version >= "3.10" and python_version < "3.12"
15+
packaging==23.2 ; python_version >= "3.10" and python_version < "3.12"
16+
pandas==2.1.4 ; python_version >= "3.10" and python_version < "3.12"
17+
pyarrow==14.0.2 ; python_version >= "3.10" and python_version < "3.12"
18+
pycparser==2.21 ; python_version >= "3.10" and python_version < "3.12"
19+
pyreaddbc==1.2.0 ; python_version >= "3.10" and python_version < "3.12"
20+
python-dateutil==2.8.2 ; python_version >= "3.10" and python_version < "3.12"
21+
pytz==2023.3.post1 ; python_version >= "3.10" and python_version < "3.12"
22+
pyyaml==6.0.1 ; python_version >= "3.10" and python_version < "3.12"
23+
regex==2023.12.25 ; python_version >= "3.10" and python_version < "3.12"
24+
six==1.16.0 ; python_version >= "3.10" and python_version < "3.12"
25+
tqdm==4.64.0 ; python_version >= "3.10" and python_version < "3.12"
26+
typing-extensions==4.9.0 ; python_version >= "3.10" and python_version < "3.12"
27+
tzdata==2023.4 ; python_version >= "3.10" and python_version < "3.12"
28+
tzlocal==5.2 ; python_version >= "3.10" and python_version < "3.12"
29+
unidecode==1.3.7 ; python_version >= "3.10" and python_version < "3.12"
30+
urllib3==1.26.18 ; python_version >= "3.10" and python_version < "3.12"
31+
urwid==2.4.1 ; python_version >= "3.10" and python_version < "3.12"
32+
wget==3.2 ; python_version >= "3.10" and python_version < "3.12"
33+
win32-setctime==1.1.0 ; python_version >= "3.10" and python_version < "3.12" and sys_platform == "win32"

0 commit comments

Comments
 (0)
Please sign in to comment.