jiaulislam
commited on
Commit
·
3095680
1
Parent(s):
cb15d3a
adding pre-commit support for python 3.7
Browse files- .pre-commit-config.yaml +0 -5
- poetry.lock +67 -48
- pyproject.toml +2 -3
.pre-commit-config.yaml
CHANGED
@@ -1,9 +1,4 @@
|
|
1 |
repos:
|
2 |
-
- repo: https://github.com/PyCQA/autoflake
|
3 |
-
rev: v2.0.1
|
4 |
-
hooks:
|
5 |
-
- id: autoflake
|
6 |
-
args: ["--remove-all-unused-imports"]
|
7 |
- repo: https://github.com/psf/black
|
8 |
rev: 23.1.0
|
9 |
hooks:
|
|
|
1 |
repos:
|
|
|
|
|
|
|
|
|
|
|
2 |
- repo: https://github.com/psf/black
|
3 |
rev: 23.1.0
|
4 |
hooks:
|
poetry.lock
CHANGED
@@ -42,22 +42,6 @@ docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-
|
|
42 |
tests = ["attrs[tests-no-zope]", "zope.interface"]
|
43 |
tests-no-zope = ["cloudpickle", "cloudpickle", "hypothesis", "hypothesis", "mypy (>=0.971,<0.990)", "mypy (>=0.971,<0.990)", "pympler", "pympler", "pytest (>=4.3.0)", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-mypy-plugins", "pytest-xdist[psutil]", "pytest-xdist[psutil]"]
|
44 |
|
45 |
-
[[package]]
|
46 |
-
name = "autoflake"
|
47 |
-
version = "2.0.1"
|
48 |
-
description = "Removes unused imports and unused variables"
|
49 |
-
category = "dev"
|
50 |
-
optional = false
|
51 |
-
python-versions = ">=3.7"
|
52 |
-
files = [
|
53 |
-
{file = "autoflake-2.0.1-py3-none-any.whl", hash = "sha256:143b0843667734af53532c443e950c787316b9b1155b2273558260b44836e8e4"},
|
54 |
-
{file = "autoflake-2.0.1.tar.gz", hash = "sha256:1ce520131b7f396915242fe91e57221f4d42408529bbe3ae93adafed286591e0"},
|
55 |
-
]
|
56 |
-
|
57 |
-
[package.dependencies]
|
58 |
-
pyflakes = ">=3.0.0"
|
59 |
-
tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""}
|
60 |
-
|
61 |
[[package]]
|
62 |
name = "babel"
|
63 |
version = "2.11.0"
|
@@ -120,6 +104,7 @@ mypy-extensions = ">=0.4.3"
|
|
120 |
pathspec = ">=0.9.0"
|
121 |
platformdirs = ">=2"
|
122 |
tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""}
|
|
|
123 |
typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
|
124 |
|
125 |
[package.extras]
|
@@ -360,6 +345,7 @@ files = [
|
|
360 |
|
361 |
[package.dependencies]
|
362 |
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
|
|
363 |
|
364 |
[[package]]
|
365 |
name = "click-log"
|
@@ -591,6 +577,7 @@ files = [
|
|
591 |
|
592 |
[package.dependencies]
|
593 |
gitdb = ">=4.0.1,<5"
|
|
|
594 |
|
595 |
[[package]]
|
596 |
name = "identify"
|
@@ -644,6 +631,7 @@ files = [
|
|
644 |
]
|
645 |
|
646 |
[package.dependencies]
|
|
|
647 |
zipp = ">=0.5"
|
648 |
|
649 |
[package.extras]
|
@@ -696,18 +684,18 @@ files = [
|
|
696 |
|
697 |
[[package]]
|
698 |
name = "isort"
|
699 |
-
version = "5.
|
700 |
description = "A Python utility / library to sort Python imports."
|
701 |
category = "dev"
|
702 |
optional = false
|
703 |
-
python-versions = ">=3.
|
704 |
files = [
|
705 |
-
{file = "isort-5.
|
706 |
-
{file = "isort-5.
|
707 |
]
|
708 |
|
709 |
[package.extras]
|
710 |
-
colors = ["colorama (>=0.4.3)"]
|
711 |
pipfile-deprecated-finder = ["pip-shims (>=0.5.2)", "pipreqs", "requirementslib"]
|
712 |
plugins = ["setuptools"]
|
713 |
requirements-deprecated-finder = ["pip-api", "pipreqs"]
|
@@ -940,6 +928,9 @@ files = [
|
|
940 |
{file = "platformdirs-3.0.0.tar.gz", hash = "sha256:8a1228abb1ef82d788f74139988b137e78692984ec7b08eaa6c65f1723af28f9"},
|
941 |
]
|
942 |
|
|
|
|
|
|
|
943 |
[package.extras]
|
944 |
docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"]
|
945 |
test = ["appdirs (==1.4.4)", "covdefaults (>=2.2.2)", "pytest (>=7.2.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"]
|
@@ -956,25 +947,29 @@ files = [
|
|
956 |
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
|
957 |
]
|
958 |
|
|
|
|
|
|
|
959 |
[package.extras]
|
960 |
dev = ["pre-commit", "tox"]
|
961 |
testing = ["pytest", "pytest-benchmark"]
|
962 |
|
963 |
[[package]]
|
964 |
name = "pre-commit"
|
965 |
-
version = "
|
966 |
description = "A framework for managing and maintaining multi-language pre-commit hooks."
|
967 |
category = "dev"
|
968 |
optional = false
|
969 |
-
python-versions = ">=3.
|
970 |
files = [
|
971 |
-
{file = "pre_commit-
|
972 |
-
{file = "pre_commit-
|
973 |
]
|
974 |
|
975 |
[package.dependencies]
|
976 |
cfgv = ">=2.0.0"
|
977 |
identify = ">=1.0.0"
|
|
|
978 |
nodeenv = ">=0.11.1"
|
979 |
pyyaml = ">=5.1"
|
980 |
virtualenv = ">=20.10.0"
|
@@ -1003,18 +998,6 @@ files = [
|
|
1003 |
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
|
1004 |
]
|
1005 |
|
1006 |
-
[[package]]
|
1007 |
-
name = "pyflakes"
|
1008 |
-
version = "3.0.1"
|
1009 |
-
description = "passive checker of Python programs"
|
1010 |
-
category = "dev"
|
1011 |
-
optional = false
|
1012 |
-
python-versions = ">=3.6"
|
1013 |
-
files = [
|
1014 |
-
{file = "pyflakes-3.0.1-py2.py3-none-any.whl", hash = "sha256:ec55bf7fe21fff7f1ad2f7da62363d749e2a470500eab1b555334b67aa1ef8cf"},
|
1015 |
-
{file = "pyflakes-3.0.1.tar.gz", hash = "sha256:ec8b276a6b60bd80defed25add7e439881c19e64850afd9b346283d4165fd0fd"},
|
1016 |
-
]
|
1017 |
-
|
1018 |
[[package]]
|
1019 |
name = "pygments"
|
1020 |
version = "2.14.0"
|
@@ -1068,6 +1051,7 @@ files = [
|
|
1068 |
atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
|
1069 |
attrs = ">=19.2.0"
|
1070 |
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
|
|
1071 |
iniconfig = "*"
|
1072 |
packaging = "*"
|
1073 |
pluggy = ">=0.12,<2.0"
|
@@ -1422,14 +1406,14 @@ test = ["cython", "html5lib", "pytest", "pytest-cov", "typed-ast"]
|
|
1422 |
|
1423 |
[[package]]
|
1424 |
name = "sphinxcontrib-applehelp"
|
1425 |
-
version = "1.0.
|
1426 |
-
description = "sphinxcontrib-applehelp is a
|
1427 |
category = "dev"
|
1428 |
optional = false
|
1429 |
-
python-versions = ">=3.
|
1430 |
files = [
|
1431 |
-
{file = "sphinxcontrib-applehelp-1.0.
|
1432 |
-
{file = "sphinxcontrib_applehelp-1.0.
|
1433 |
]
|
1434 |
|
1435 |
[package.extras]
|
@@ -1454,14 +1438,14 @@ test = ["pytest"]
|
|
1454 |
|
1455 |
[[package]]
|
1456 |
name = "sphinxcontrib-htmlhelp"
|
1457 |
-
version = "2.0.
|
1458 |
description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files"
|
1459 |
category = "dev"
|
1460 |
optional = false
|
1461 |
-
python-versions = ">=3.
|
1462 |
files = [
|
1463 |
-
{file = "sphinxcontrib-htmlhelp-2.0.
|
1464 |
-
{file = "sphinxcontrib_htmlhelp-2.0.
|
1465 |
]
|
1466 |
|
1467 |
[package.extras]
|
@@ -1596,6 +1580,40 @@ rfc3986 = ">=1.4.0"
|
|
1596 |
tqdm = ">=4.14"
|
1597 |
urllib3 = ">=1.26.0"
|
1598 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1599 |
[[package]]
|
1600 |
name = "typing-extensions"
|
1601 |
version = "4.4.0"
|
@@ -1640,6 +1658,7 @@ files = [
|
|
1640 |
[package.dependencies]
|
1641 |
distlib = ">=0.3.6,<1"
|
1642 |
filelock = ">=3.4.1,<4"
|
|
|
1643 |
platformdirs = ">=2.4,<4"
|
1644 |
|
1645 |
[package.extras]
|
@@ -1691,5 +1710,5 @@ testing = ["flake8 (<5)", "func-timeout", "jaraco.functools", "jaraco.itertools"
|
|
1691 |
|
1692 |
[metadata]
|
1693 |
lock-version = "2.0"
|
1694 |
-
python-versions = "
|
1695 |
-
content-hash = "
|
|
|
42 |
tests = ["attrs[tests-no-zope]", "zope.interface"]
|
43 |
tests-no-zope = ["cloudpickle", "cloudpickle", "hypothesis", "hypothesis", "mypy (>=0.971,<0.990)", "mypy (>=0.971,<0.990)", "pympler", "pympler", "pytest (>=4.3.0)", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-mypy-plugins", "pytest-xdist[psutil]", "pytest-xdist[psutil]"]
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
[[package]]
|
46 |
name = "babel"
|
47 |
version = "2.11.0"
|
|
|
104 |
pathspec = ">=0.9.0"
|
105 |
platformdirs = ">=2"
|
106 |
tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""}
|
107 |
+
typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""}
|
108 |
typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}
|
109 |
|
110 |
[package.extras]
|
|
|
345 |
|
346 |
[package.dependencies]
|
347 |
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
348 |
+
importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
|
349 |
|
350 |
[[package]]
|
351 |
name = "click-log"
|
|
|
577 |
|
578 |
[package.dependencies]
|
579 |
gitdb = ">=4.0.1,<5"
|
580 |
+
typing-extensions = {version = ">=3.7.4.3", markers = "python_version < \"3.8\""}
|
581 |
|
582 |
[[package]]
|
583 |
name = "identify"
|
|
|
631 |
]
|
632 |
|
633 |
[package.dependencies]
|
634 |
+
typing-extensions = {version = ">=3.6.4", markers = "python_version < \"3.8\""}
|
635 |
zipp = ">=0.5"
|
636 |
|
637 |
[package.extras]
|
|
|
684 |
|
685 |
[[package]]
|
686 |
name = "isort"
|
687 |
+
version = "5.11.5"
|
688 |
description = "A Python utility / library to sort Python imports."
|
689 |
category = "dev"
|
690 |
optional = false
|
691 |
+
python-versions = ">=3.7.0"
|
692 |
files = [
|
693 |
+
{file = "isort-5.11.5-py3-none-any.whl", hash = "sha256:ba1d72fb2595a01c7895a5128f9585a5cc4b6d395f1c8d514989b9a7eb2a8746"},
|
694 |
+
{file = "isort-5.11.5.tar.gz", hash = "sha256:6be1f76a507cb2ecf16c7cf14a37e41609ca082330be4e3436a18ef74add55db"},
|
695 |
]
|
696 |
|
697 |
[package.extras]
|
698 |
+
colors = ["colorama (>=0.4.3,<0.5.0)"]
|
699 |
pipfile-deprecated-finder = ["pip-shims (>=0.5.2)", "pipreqs", "requirementslib"]
|
700 |
plugins = ["setuptools"]
|
701 |
requirements-deprecated-finder = ["pip-api", "pipreqs"]
|
|
|
928 |
{file = "platformdirs-3.0.0.tar.gz", hash = "sha256:8a1228abb1ef82d788f74139988b137e78692984ec7b08eaa6c65f1723af28f9"},
|
929 |
]
|
930 |
|
931 |
+
[package.dependencies]
|
932 |
+
typing-extensions = {version = ">=4.4", markers = "python_version < \"3.8\""}
|
933 |
+
|
934 |
[package.extras]
|
935 |
docs = ["furo (>=2022.12.7)", "proselint (>=0.13)", "sphinx (>=6.1.3)", "sphinx-autodoc-typehints (>=1.22,!=1.23.4)"]
|
936 |
test = ["appdirs (==1.4.4)", "covdefaults (>=2.2.2)", "pytest (>=7.2.1)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"]
|
|
|
947 |
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
|
948 |
]
|
949 |
|
950 |
+
[package.dependencies]
|
951 |
+
importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
|
952 |
+
|
953 |
[package.extras]
|
954 |
dev = ["pre-commit", "tox"]
|
955 |
testing = ["pytest", "pytest-benchmark"]
|
956 |
|
957 |
[[package]]
|
958 |
name = "pre-commit"
|
959 |
+
version = "2.21.0"
|
960 |
description = "A framework for managing and maintaining multi-language pre-commit hooks."
|
961 |
category = "dev"
|
962 |
optional = false
|
963 |
+
python-versions = ">=3.7"
|
964 |
files = [
|
965 |
+
{file = "pre_commit-2.21.0-py2.py3-none-any.whl", hash = "sha256:e2f91727039fc39a92f58a588a25b87f936de6567eed4f0e673e0507edc75bad"},
|
966 |
+
{file = "pre_commit-2.21.0.tar.gz", hash = "sha256:31ef31af7e474a8d8995027fefdfcf509b5c913ff31f2015b4ec4beb26a6f658"},
|
967 |
]
|
968 |
|
969 |
[package.dependencies]
|
970 |
cfgv = ">=2.0.0"
|
971 |
identify = ">=1.0.0"
|
972 |
+
importlib-metadata = {version = "*", markers = "python_version < \"3.8\""}
|
973 |
nodeenv = ">=0.11.1"
|
974 |
pyyaml = ">=5.1"
|
975 |
virtualenv = ">=20.10.0"
|
|
|
998 |
{file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"},
|
999 |
]
|
1000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1001 |
[[package]]
|
1002 |
name = "pygments"
|
1003 |
version = "2.14.0"
|
|
|
1051 |
atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""}
|
1052 |
attrs = ">=19.2.0"
|
1053 |
colorama = {version = "*", markers = "sys_platform == \"win32\""}
|
1054 |
+
importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
|
1055 |
iniconfig = "*"
|
1056 |
packaging = "*"
|
1057 |
pluggy = ">=0.12,<2.0"
|
|
|
1406 |
|
1407 |
[[package]]
|
1408 |
name = "sphinxcontrib-applehelp"
|
1409 |
+
version = "1.0.2"
|
1410 |
+
description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books"
|
1411 |
category = "dev"
|
1412 |
optional = false
|
1413 |
+
python-versions = ">=3.5"
|
1414 |
files = [
|
1415 |
+
{file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"},
|
1416 |
+
{file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"},
|
1417 |
]
|
1418 |
|
1419 |
[package.extras]
|
|
|
1438 |
|
1439 |
[[package]]
|
1440 |
name = "sphinxcontrib-htmlhelp"
|
1441 |
+
version = "2.0.0"
|
1442 |
description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files"
|
1443 |
category = "dev"
|
1444 |
optional = false
|
1445 |
+
python-versions = ">=3.6"
|
1446 |
files = [
|
1447 |
+
{file = "sphinxcontrib-htmlhelp-2.0.0.tar.gz", hash = "sha256:f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2"},
|
1448 |
+
{file = "sphinxcontrib_htmlhelp-2.0.0-py2.py3-none-any.whl", hash = "sha256:d412243dfb797ae3ec2b59eca0e52dac12e75a241bf0e4eb861e450d06c6ed07"},
|
1449 |
]
|
1450 |
|
1451 |
[package.extras]
|
|
|
1580 |
tqdm = ">=4.14"
|
1581 |
urllib3 = ">=1.26.0"
|
1582 |
|
1583 |
+
[[package]]
|
1584 |
+
name = "typed-ast"
|
1585 |
+
version = "1.5.4"
|
1586 |
+
description = "a fork of Python 2 and 3 ast modules with type comment support"
|
1587 |
+
category = "dev"
|
1588 |
+
optional = false
|
1589 |
+
python-versions = ">=3.6"
|
1590 |
+
files = [
|
1591 |
+
{file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"},
|
1592 |
+
{file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"},
|
1593 |
+
{file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"},
|
1594 |
+
{file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"},
|
1595 |
+
{file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"},
|
1596 |
+
{file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"},
|
1597 |
+
{file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"},
|
1598 |
+
{file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"},
|
1599 |
+
{file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"},
|
1600 |
+
{file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"},
|
1601 |
+
{file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"},
|
1602 |
+
{file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"},
|
1603 |
+
{file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"},
|
1604 |
+
{file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"},
|
1605 |
+
{file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"},
|
1606 |
+
{file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"},
|
1607 |
+
{file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"},
|
1608 |
+
{file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"},
|
1609 |
+
{file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"},
|
1610 |
+
{file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"},
|
1611 |
+
{file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"},
|
1612 |
+
{file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"},
|
1613 |
+
{file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"},
|
1614 |
+
{file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"},
|
1615 |
+
]
|
1616 |
+
|
1617 |
[[package]]
|
1618 |
name = "typing-extensions"
|
1619 |
version = "4.4.0"
|
|
|
1658 |
[package.dependencies]
|
1659 |
distlib = ">=0.3.6,<1"
|
1660 |
filelock = ">=3.4.1,<4"
|
1661 |
+
importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.8\""}
|
1662 |
platformdirs = ">=2.4,<4"
|
1663 |
|
1664 |
[package.extras]
|
|
|
1710 |
|
1711 |
[metadata]
|
1712 |
lock-version = "2.0"
|
1713 |
+
python-versions = "^3.7"
|
1714 |
+
content-hash = "a131b894332216836e8a251b38d55f32a379f722a8c8cb594b41723351da6a66"
|
pyproject.toml
CHANGED
@@ -28,7 +28,7 @@ deep-translator = 'deep_translator.__main__:main'
|
|
28 |
dt = 'deep_translator.__main__:main'
|
29 |
|
30 |
[tool.poetry.dependencies]
|
31 |
-
python = "
|
32 |
beautifulsoup4 = "^4.9.1"
|
33 |
requests = "^2.23.0"
|
34 |
docx2txt = {version = "^0.8", extras = ["docx"]}
|
@@ -45,8 +45,7 @@ toml = "^0.10.2"
|
|
45 |
black = "^22.1.0"
|
46 |
isort = "^5.10.1"
|
47 |
python-semantic-release = "^7.26.0"
|
48 |
-
pre-commit = "^
|
49 |
-
autoflake = "^2.0.1"
|
50 |
|
51 |
[tool.black]
|
52 |
line-length = 79
|
|
|
28 |
dt = 'deep_translator.__main__:main'
|
29 |
|
30 |
[tool.poetry.dependencies]
|
31 |
+
python = "^3.7"
|
32 |
beautifulsoup4 = "^4.9.1"
|
33 |
requests = "^2.23.0"
|
34 |
docx2txt = {version = "^0.8", extras = ["docx"]}
|
|
|
45 |
black = "^22.1.0"
|
46 |
isort = "^5.10.1"
|
47 |
python-semantic-release = "^7.26.0"
|
48 |
+
pre-commit = "^2.21.0"
|
|
|
49 |
|
50 |
[tool.black]
|
51 |
line-length = 79
|